summaryrefslogtreecommitdiff
path: root/src/ex_cmds.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-08-14 13:38:17 +0200
committerBram Moolenaar <Bram@vim.org>2018-08-14 13:38:17 +0200
commiteffed9315c6c5a35fc2824b90da4af753c7a02dc (patch)
tree88d56aef2343b3cd97dec518e2cc047376accbd0 /src/ex_cmds.h
parentdef7b1dc6104a6ce6d7c3e3a615231178601b124 (diff)
downloadvim-git-effed9315c6c5a35fc2824b90da4af753c7a02dc.tar.gz
patch 8.1.0281: parsing command modifiers is not separatedv8.1.0281
Problem: Parsing command modifiers is not separated. Solution: Move command modifier parsing to a separate function.
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r--src/ex_cmds.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index 045bfcb20..187efea23 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -1792,6 +1792,12 @@ struct exarg
#ifdef FEAT_EVAL
struct condstack *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" */