From 18433aadf67871ede7000cdacf4c05c544059732 Mon Sep 17 00:00:00 2001 From: Paul Fox Date: Wed, 20 Jul 2005 17:39:52 +0000 Subject: [PATCH] applying fix for: 0000118: vi join command does not mark file as modified for certain lines. --- editors/vi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/editors/vi.c b/editors/vi.c index eb0aa33..6f739a7 100644 --- a/editors/vi.c +++ b/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(); } -- 2.7.4