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/getchar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/getchar.c') diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index 061b220f0e..2eb2df399e 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -1670,7 +1670,7 @@ static int vgetorpeek(int advance) } if (c != NUL && !got_int) { if (advance) { - // KeyTyped = FALSE; When the command that stuffed something + // KeyTyped = false; When the command that stuffed something // was typed, behave like the stuffed command was typed. // needed for CTRL-W CTRL-] to open a fold, for example. KeyStuffed = true; -- cgit