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/message.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/message.c')
-rw-r--r-- | src/nvim/message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index 4b0824c90f..e550bf0a37 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -541,7 +541,7 @@ int emsg(const char_u *s_) // Reset msg_silent, an error causes messages to be switched back on. msg_silent = 0; - cmd_silent = FALSE; + cmd_silent = false; if (global_busy) { // break :global command global_busy++; |