ex_menu: use bool. #3389

This commit is contained in:
Pavlos Vinieratos
2015-09-25 10:54:36 +02:00
committed by Justin M. Keyes
parent 641c6420e1
commit e073074414

View File

@@ -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, "<special>", 9) == 0) {
special = TRUE;
special = true;
arg = skipwhite(arg + 9);
continue;
}