diff options
author | Pavlos Vinieratos <pvinis@gmail.com> | 2015-09-25 10:54:36 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-09-25 21:15:10 -0400 |
commit | e073074414f2000c1b4bb291ad3ece33958a427f (patch) | |
tree | 3dee9a3e61db4484bdd82c5318ba0c2d01730627 | |
parent | 641c6420e146aee1d2c3e75439c3efc5777a6845 (diff) | |
download | rneovim-e073074414f2000c1b4bb291ad3ece33958a427f.tar.gz rneovim-e073074414f2000c1b4bb291ad3ece33958a427f.tar.bz2 rneovim-e073074414f2000c1b4bb291ad3ece33958a427f.zip |
ex_menu: use `bool`. #3389
-rw-r--r-- | src/nvim/menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
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, "<special>", 9) == 0) { - special = TRUE; + special = true; arg = skipwhite(arg + 9); continue; } |