diff options
author | Rob Landley | 2005-08-12 06:02:30 +0000 |
---|---|---|
committer | Rob Landley | 2005-08-12 06:02:30 +0000 |
commit | 9344d8aa10ecf99aba3eae97e4fa131360f89729 (patch) | |
tree | c8cac66ea14d711c75e4f7ea13ff3eb849e3813e /busybox | |
parent | 44dbd4bc650440f3746e446ae6773e7ce98156fd (diff) | |
download | busybox-9344d8aa10ecf99aba3eae97e4fa131360f89729.zip busybox-9344d8aa10ecf99aba3eae97e4fa131360f89729.tar.gz |
And 10873.
Diffstat (limited to 'busybox')
-rw-r--r-- | busybox/editors/vi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/busybox/editors/vi.c b/busybox/editors/vi.c index eb0aa33..6f739a7 100644 --- a/busybox/editors/vi.c +++ b/busybox/editors/vi.c @@ -3517,6 +3517,7 @@ key_cmd_mode: dot_end(); // move to NL if (dot < end - 1) { // make sure not last char in text[] *dot++ = ' '; // replace NL with space + file_modified = TRUE; while (isblnk(*dot)) { // delete leading WS dot_delete(); } |