summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-04-10 18:47:20 +0200
committerBram Moolenaar <Bram@vim.org>2018-04-10 18:47:20 +0200
commit6f4700233fd925fe122b851f937929fb5e5da707 (patch)
tree5c5397f70fc4a320ce0c38adba21a1de7ed7b10d /src/main.c
parentd6b4f2dd760b425c63c359b9ff299f73448f8854 (diff)
patch 8.0.1688: some macros are used without a semicolonv8.0.1688
Problem: Some macros are used without a semicolon, causing auto-indent to be wrong. Solution: Use the do-while(0) trick. (Ozaki Kiichi, closes #2729)
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 0b0fac60be..6d351b6ff3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -824,7 +824,7 @@ vim_main2(void)
no_wait_return = FALSE;
/* 'autochdir' has been postponed */
- DO_AUTOCHDIR
+ DO_AUTOCHDIR;
#ifdef FEAT_TERMRESPONSE
/* Requesting the termresponse is postponed until here, so that a "-c q"