From effed9315c6c5a35fc2824b90da4af753c7a02dc Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 14 Aug 2018 13:38:17 +0200 Subject: patch 8.1.0281: parsing command modifiers is not separated Problem: Parsing command modifiers is not separated. Solution: Move command modifier parsing to a separate function. --- src/ex_cmds.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ex_cmds.h') 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 @@ -1791,6 +1791,12 @@ struct exarg void *cookie; /* argument for getline() */ #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 }; -- cgit v1.2.1