diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-04-10 18:47:20 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-04-10 18:47:20 +0200 |
commit | 6f4700233fd925fe122b851f937929fb5e5da707 (patch) | |
tree | 5c5397f70fc4a320ce0c38adba21a1de7ed7b10d /src/os_vms.c | |
parent | d6b4f2dd760b425c63c359b9ff299f73448f8854 (diff) | |
download | vim-git-6f4700233fd925fe122b851f937929fb5e5da707.tar.gz |
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/os_vms.c')
-rw-r--r-- | src/os_vms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_vms.c b/src/os_vms.c index 02c594c5b..84f84ac71 100644 --- a/src/os_vms.c +++ b/src/os_vms.c @@ -83,7 +83,7 @@ static void set_tty(int row, int col); #define EXPL_ALLOC_INC 64 #define EQN(S1,S2,LN) (strncmp(S1,S2,LN) == 0) -#define SKIP_FOLLOWING_SLASHES(Str) while (Str[1] == '/') ++Str +#define SKIP_FOLLOWING_SLASHES(Str) do { while (Str[1] == '/') ++Str; } while (0) /* |