diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-14 01:01:00 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-14 01:01:00 -0400 |
commit | db90c0c9bf917c6b04a332b4ca500c410b5014ce (patch) | |
tree | 567d37d822931b56318fded8cc4bd7d8b935d76e /src/nvim/ex_cmds.c | |
parent | 20354dbd750dc0ad9911db19f02655ec63dd29b9 (diff) | |
download | rneovim-db90c0c9bf917c6b04a332b4ca500c410b5014ce.tar.gz rneovim-db90c0c9bf917c6b04a332b4ca500c410b5014ce.tar.bz2 rneovim-db90c0c9bf917c6b04a332b4ca500c410b5014ce.zip |
globals: KeyTyped is bool
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { /* |