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 5bce427..a103776 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -447,7 +447,7 @@ static void edit_file(char * fn) q = p; p = strchr(q,'\n'); if (p) - while(*p == '\n') + while (*p == '\n') *p++ = '\0'; if (*q) colon(q); |