From db90c0c9bf917c6b04a332b4ca500c410b5014ce Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Fri, 14 Sep 2018 01:01:00 -0400 Subject: globals: KeyTyped is bool --- src/nvim/ex_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/ex_cmds.c') diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 3e06b079ba..67c45e4360 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -4395,7 +4395,7 @@ void ex_help(exarg_T *eap) buf_T *buf; int len; char_u *lang; - int old_KeyTyped = KeyTyped; + const bool old_KeyTyped = KeyTyped; if (eap != NULL) { /* -- cgit