aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-09-14 19:21:09 +0200
committerGitHub <noreply@github.com>2018-09-14 19:21:09 +0200
commitdadcfe22cab6c4c5e838c0127303bc81638b7283 (patch)
treef934c57f9587185b59effe605dfedca91a839596 /src/nvim/getchar.c
parentc03e8307d2eff687034b71d59c859e5c267661c8 (diff)
parenta6d4a2fb8d319b2639b38039f56f44728f4f8bc2 (diff)
downloadrneovim-dadcfe22cab6c4c5e838c0127303bc81638b7283.tar.gz
rneovim-dadcfe22cab6c4c5e838c0127303bc81638b7283.tar.bz2
rneovim-dadcfe22cab6c4c5e838c0127303bc81638b7283.zip
Merge #8998 from janlazo/vim-8.0.1275
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r--src/nvim/getchar.c2
1 files changed, 1 insertions, 1 deletions
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;