summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-24 17:19:16 +0200
committerBram Moolenaar <Bram@vim.org>2020-10-24 17:19:16 +0200
commit5661ed6c833e05467cab33cb9b1c535e7e5cc570 (patch)
treea0baf6f26a8af0e8011f34a4a61b6d29423244c6 /src/ex_cmds.h
parente1be11864d1f4383171e3af3eb77e61d41140c4e (diff)
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.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index 0b52c11ee0..d53b6df6d2 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"