diff options
Diffstat (limited to 'editors/vi.c')
-rw-r--r-- | editors/vi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c index 97efe0c..c4f3a83 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -2800,7 +2800,7 @@ static void refresh(int full_screen) format_line(buf, tp, li); // skip to the end of the current text[] line - while (tp < end && *tp++ != '\n') /*no-op*/ ; + while (tp < end && *tp++ != '\n') /*no-op*/; // see if there are any changes between vitual screen and buf changed = FALSE; // assume no change |