diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-10-24 17:19:16 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-10-24 17:19:16 +0200 |
commit | 5661ed6c833e05467cab33cb9b1c535e7e5cc570 (patch) | |
tree | a0baf6f26a8af0e8011f34a4a61b6d29423244c6 /src/ex_cmds.h | |
parent | e1be11864d1f4383171e3af3eb77e61d41140c4e (diff) | |
download | vim-git-5661ed6c833e05467cab33cb9b1c535e7e5cc570.tar.gz |
patch 8.2.1897: command modifiers are saved and set inconsistentlyv8.2.1897
Problem: Command modifiers are saved and set inconsistently.
Solution: Separate parsing and applying command modifiers. Save values in
cmdmod_T.
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index 0b52c11ee..d53b6df6d 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -1884,12 +1884,6 @@ struct exarg #ifdef FEAT_EVAL cstack_T *cstack; // condition stack for ":if" etc. #endif - long verbose_save; // saved value of p_verbose - int save_msg_silent; // saved value of msg_silent - int did_esilent; // how many times emsg_silent was incremented -#ifdef HAVE_SANDBOX - int did_sandbox; // when TRUE did ++sandbox -#endif }; #define FORCE_BIN 1 // ":edit ++bin file" |