From 84ba37fbcbb420b27c9e3fcd8db79d4857037a82 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sun, 9 Jun 2019 16:25:10 -0400 Subject: lint --- src/nvim/misc1.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c index 6da2a8f786..4e47311dda 100644 --- a/src/nvim/misc1.c +++ b/src/nvim/misc1.c @@ -2512,11 +2512,12 @@ int prompt_for_number(int *mouse_used) if (msg_row > 0) { cmdline_row = msg_row - 1; } - need_wait_return = FALSE; - msg_didany = FALSE; - msg_didout = FALSE; - } else + need_wait_return = false; + msg_didany = false; + msg_didout = false; + } else { cmdline_row = save_cmdline_row; + } State = save_State; // May need to restore mouse shape. setmouse(); -- cgit