summaryrefslogtreecommitdiff
path: root/editors/vi.c
diff options
context:
space:
mode:
Diffstat (limited to 'editors/vi.c')
-rw-r--r--editors/vi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/vi.c b/editors/vi.c
index fda29acfb..fcd139310 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -426,7 +426,7 @@ static void edit_file(char * fn)
426 if (fn != 0) { 426 if (fn != 0) {
427 ch = file_insert(fn, text); 427 ch = file_insert(fn, text);
428 update_ro_status(fn); 428 update_ro_status(fn);
429 } 429 }
430 if (ch < 1) { 430 if (ch < 1) {
431 char_insert(text, '\n'); // start empty buf with dummy line 431 char_insert(text, '\n'); // start empty buf with dummy line
432 } 432 }
@@ -2404,7 +2404,7 @@ static int file_size(const char * fn) // what is the byte size of "fn"
2404 return cnt; 2404 return cnt;
2405} 2405}
2406 2406
2407static int file_insert(char * fn, char * p) 2407static int file_insert(char *fn, char *p)
2408{ 2408{
2409 int cnt = -1; 2409 int cnt = -1;
2410 int fd, size; 2410 int fd, size;