summaryrefslogtreecommitdiffstats
path: root/src/map.c
diff options
context:
space:
mode:
authorichizok <gclient.gaap@gmail.com>2023-04-15 13:17:50 +0100
committerBram Moolenaar <Bram@vim.org>2023-04-15 13:17:50 +0100
commit7e5fe38efc105721400048a2ffdeddbe1b9c0650 (patch)
tree670353de5a42ddc725f9c109f80b05680a03d0e8 /src/map.c
parentb49dfd0cf296623af2d756cefc3e73b5b307734e (diff)
patch 9.0.1454: code indenting is confused by macrosv9.0.1454
Problem: Code indenting is confused by macros. Solution: Put semicolon after the macros instead of inside. (Ozaki Kiichi, closes #12257)
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map.c b/src/map.c
index d56895b811..4bdd07e777 100644
--- a/src/map.c
+++ b/src/map.c
@@ -2231,12 +2231,12 @@ check_map_keycodes(void)
int abbr;
int hash;
buf_T *bp;
- ESTACK_CHECK_DECLARATION
+ ESTACK_CHECK_DECLARATION;
validate_maphash();
// avoids giving error messages
estack_push(ETYPE_INTERNAL, (char_u *)"mappings", 0);
- ESTACK_CHECK_SETUP
+ ESTACK_CHECK_SETUP;
// Do this once for each buffer, and then once for global
// mappings/abbreviations with bp == NULL
@@ -2293,7 +2293,7 @@ check_map_keycodes(void)
if (bp == NULL)
break;
}
- ESTACK_CHECK_NOW
+ ESTACK_CHECK_NOW;
estack_pop();
}