From a568e8b644a41b12388b7c7de4ca0fb8dc107f18 Mon Sep 17 00:00:00 2001 From: Klemen Košir Date: Tue, 29 Apr 2014 10:52:10 +0200 Subject: Replaced most TRUE/FALSE macros in arabic, mbyte and spell. #645 --- src/nvim/message.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/message.c') diff --git a/src/nvim/message.c b/src/nvim/message.c index 1a42fba4a4..37a31ccf25 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -777,7 +777,7 @@ void wait_return(int redraw) } else { /* Make sure the hit-return prompt is on screen when 'guioptions' was * just changed. */ - screenalloc(FALSE); + screenalloc(false); State = HITRETURN; setmouse(); @@ -2612,7 +2612,7 @@ int verbose_open(void) * Give a warning message (for searching). * Use 'w' highlighting and may repeat the message after redrawing */ -void give_warning(char_u *message, int hl) +void give_warning(char_u *message, bool hl) { /* Don't do this for ":silent". */ if (msg_silent != 0) -- cgit