aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/vi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c
index 7c1877bb2..ba608fbd2 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -536,6 +536,7 @@ struct globals {
536 last_modified_count = -1; \ 536 last_modified_count = -1; \
537 /* "" but has space for 2 chars: */ \ 537 /* "" but has space for 2 chars: */ \
538 IF_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \ 538 IF_FEATURE_VI_SEARCH(last_search_pattern = xzalloc(2);) \
539 tabstop = 8; \
539} while (0) 540} while (0)
540 541
541#if ENABLE_FEATURE_VI_CRASHME 542#if ENABLE_FEATURE_VI_CRASHME
@@ -4619,7 +4620,6 @@ static void edit_file(char *fn)
4619 4620
4620 cmd_mode = 0; // 0=command 1=insert 2='R'eplace 4621 cmd_mode = 0; // 0=command 1=insert 2='R'eplace
4621 cmdcnt = 0; 4622 cmdcnt = 0;
4622 tabstop = 8;
4623 offset = 0; // no horizontal offset 4623 offset = 0; // no horizontal offset
4624 c = '\0'; 4624 c = '\0';
4625#if ENABLE_FEATURE_VI_DOT_CMD 4625#if ENABLE_FEATURE_VI_DOT_CMD