diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-29 00:17:30 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-29 00:17:30 -0400 |
commit | 9fab77c7fb6d50cc5b2438695f73df75d192f11f (patch) | |
tree | 70fb8bdc76c2ba25b491365c08704234b6392dbc /src/nvim/ex_cmds2.c | |
parent | 7c38f60b3babe332de2b61fa829e0ea6ba27fb3a (diff) | |
download | rneovim-9fab77c7fb6d50cc5b2438695f73df75d192f11f.tar.gz rneovim-9fab77c7fb6d50cc5b2438695f73df75d192f11f.tar.bz2 rneovim-9fab77c7fb6d50cc5b2438695f73df75d192f11f.zip |
globals: cmd_silent is bool
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r-- | src/nvim/ex_cmds2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index f7da5b6c97..f5822535ba 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -123,7 +123,7 @@ void do_debug(char_u *cmd) int save_msg_scroll = msg_scroll; int save_State = State; int save_did_emsg = did_emsg; - int save_cmd_silent = cmd_silent; + const bool save_cmd_silent = cmd_silent; int save_msg_silent = msg_silent; int save_emsg_silent = emsg_silent; int save_redir_off = redir_off; |