From e073074414f2000c1b4bb291ad3ece33958a427f Mon Sep 17 00:00:00 2001 From: Pavlos Vinieratos Date: Fri, 25 Sep 2015 10:54:36 +0200 Subject: ex_menu: use `bool`. #3389 --- src/nvim/menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/menu.c') diff --git a/src/nvim/menu.c b/src/nvim/menu.c index 434b92450c..1dece58dfe 100644 --- a/src/nvim/menu.c +++ b/src/nvim/menu.c @@ -65,7 +65,7 @@ ex_menu ( char_u *map_to; int noremap; bool silent = false; - int special = FALSE; + bool special = false; int unmenu; char_u *map_buf; char_u *arg; @@ -91,7 +91,7 @@ ex_menu ( continue; } if (STRNCMP(arg, "", 9) == 0) { - special = TRUE; + special = true; arg = skipwhite(arg + 9); continue; } -- cgit