mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
ex_menu: use bool
. #3389
This commit is contained in:
parent
641c6420e1
commit
e073074414
@ -65,7 +65,7 @@ ex_menu (
|
|||||||
char_u *map_to;
|
char_u *map_to;
|
||||||
int noremap;
|
int noremap;
|
||||||
bool silent = false;
|
bool silent = false;
|
||||||
int special = FALSE;
|
bool special = false;
|
||||||
int unmenu;
|
int unmenu;
|
||||||
char_u *map_buf;
|
char_u *map_buf;
|
||||||
char_u *arg;
|
char_u *arg;
|
||||||
@ -91,7 +91,7 @@ ex_menu (
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (STRNCMP(arg, "<special>", 9) == 0) {
|
if (STRNCMP(arg, "<special>", 9) == 0) {
|
||||||
special = TRUE;
|
special = true;
|
||||||
arg = skipwhite(arg + 9);
|
arg = skipwhite(arg + 9);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user