aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
Diffstat (limited to 'editors')
-rw-r--r--editors/vi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/vi.c b/editors/vi.c
index eb0aa33f6..6f739a714 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -3517,6 +3517,7 @@ key_cmd_mode:
3517 dot_end(); // move to NL 3517 dot_end(); // move to NL
3518 if (dot < end - 1) { // make sure not last char in text[] 3518 if (dot < end - 1) { // make sure not last char in text[]
3519 *dot++ = ' '; // replace NL with space 3519 *dot++ = ' '; // replace NL with space
3520 file_modified = TRUE;
3520 while (isblnk(*dot)) { // delete leading WS 3521 while (isblnk(*dot)) { // delete leading WS
3521 dot_delete(); 3522 dot_delete();
3522 } 3523 }