From 2f6ae43b9c74d393a139007377895e8c50b8af9a Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 19 Jul 2007 22:50:47 +0000 Subject: stray trailing tabs removed --- editors/vi.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'editors') diff --git a/editors/vi.c b/editors/vi.c index 6faaef36e..97efe0cfb 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -414,7 +414,7 @@ static int init_text_buffer(char *fn) if (text_size < 10240) text_size = 10240; // have a minimum size for new files screenbegin = dot = end = text = xzalloc(text_size); - + if (fn != current_filename) { free(current_filename); current_filename = xstrdup(fn); @@ -434,7 +434,7 @@ static int init_text_buffer(char *fn) memset(mark, 0, sizeof(mark)); #endif return rc; -} +} static void edit_file(char * fn) { @@ -2210,7 +2210,7 @@ static char readit(void) // read (maybe cursor) key from stdin if (errno == EINTR) goto ri0; // interrupted sys call if (errno == EBADF || errno == EFAULT || errno == EINVAL - || errno == EIO) + || errno == EIO) editing = 0; errno = 0; } @@ -2426,7 +2426,7 @@ static int file_insert(const char * fn, char *p * so we check fileperms too */ !(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH)))) { - SET_READONLY_FILE(readonly_mode); + SET_READONLY_FILE(readonly_mode); } return cnt; } -- cgit v1.2.3