diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-08-29 08:11:16 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-08-29 08:11:16 +0200 |
commit | 17ce06d1c98e35192b644b1a38c3eed714f39ef4 (patch) | |
tree | 4b4bfccf51c830c5fc2cf1085f7cac8e239b63a8 /src/nvim/eval.c | |
parent | 461d46d8ace1b6950bf2733de9cb2b290453d86d (diff) | |
parent | 81c2cbe09999aba460eb3ca8d925e246b531e8f1 (diff) | |
download | rneovim-17ce06d1c98e35192b644b1a38c3eed714f39ef4.tar.gz rneovim-17ce06d1c98e35192b644b1a38c3eed714f39ef4.tar.bz2 rneovim-17ce06d1c98e35192b644b1a38c3eed714f39ef4.zip |
Merge #8930 'vim-patch:8.1.0022'
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index e65a4d489c..d750a47588 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -11235,7 +11235,7 @@ void get_user_input(const typval_T *const argvars, } } - int cmd_silent_save = cmd_silent; + const bool cmd_silent_save = cmd_silent; cmd_silent = false; // Want to see the prompt. // Only the part of the message after the last NL is considered as |