0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 9.0.1454: code indenting is confused by macros

Problem:    Code indenting is confused by macros.
Solution:   Put semicolon after the macros instead of inside. (Ozaki Kiichi,
            closes #12257)
This commit is contained in:
ichizok
2023-04-15 13:17:50 +01:00
committed by Bram Moolenaar
parent b49dfd0cf2
commit 7e5fe38efc
10 changed files with 66 additions and 56 deletions

View File

@@ -2748,7 +2748,7 @@ call_user_func(
#ifdef FEAT_PROFILE
profinfo_T profile_info;
#endif
ESTACK_CHECK_DECLARATION
ESTACK_CHECK_DECLARATION;
#ifdef FEAT_PROFILE
CLEAR_FIELD(profile_info);
@@ -2963,7 +2963,7 @@ call_user_func(
}
estack_push_ufunc(fp, 1);
ESTACK_CHECK_SETUP
ESTACK_CHECK_SETUP;
if (p_verbose >= 12)
{
++no_wait_return;
@@ -3117,7 +3117,7 @@ call_user_func(
--no_wait_return;
}
ESTACK_CHECK_NOW
ESTACK_CHECK_NOW;
estack_pop();
current_sctx = save_current_sctx;
restore_current_ectx(save_current_ectx);