Dumb typo.
Some checks failed
Release / Bump Homebrew formula (push) Has been cancelled

This commit is contained in:
2025-11-24 14:41:11 -08:00
parent f147c866ab
commit e937e3398c
2 changed files with 2 additions and 2 deletions

2
main.c
View File

@@ -823,7 +823,7 @@ delete_prev_word(void)
while (editor.cury > 0 || editor.curx > 0) {
if (editor.curx == 0) {
deletech(KILLRING_PREPEND);
continue
continue;
}
if (!isspace(editor.row[editor.cury].line[editor.curx - 1])) {