aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2020-04-27 13:53:41 +0200
committerGitHub <noreply@github.com>2020-04-27 13:53:41 +0200
commitd90a92bcd3c18111abb62a57192c9e151839a7f4 (patch)
treee9b9163c0896aa099f7c543c76197d28dbfdc5d3 /src/nvim/getchar.c
parentfc98f2d5815d8f7e671766db255edbb7365960b1 (diff)
parentfcd9ce39012c9328b999c4ccb7eaa7c22766168e (diff)
downloadrneovim-d90a92bcd3c18111abb62a57192c9e151839a7f4.tar.gz
rneovim-d90a92bcd3c18111abb62a57192c9e151839a7f4.tar.bz2
rneovim-d90a92bcd3c18111abb62a57192c9e151839a7f4.zip
Merge pull request #12018 from janlazo/vim-8.0.1123
[RFC]vim-patch:8.0.{1123,1125,1138,1139,1142,1292,1334,1375},8.1.1264
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 0debd39555..5ab5a7db1b 100644
--- a/src/nvim/getchar.c
+++ b/src/nvim/getchar.c
@@ -1216,7 +1216,7 @@ void save_typeahead(tasave_T *tp)
{
tp->save_typebuf = typebuf;
alloc_typebuf();
- tp->typebuf_valid = TRUE;
+ tp->typebuf_valid = true;
tp->old_char = old_char;
tp->old_mod_mask = old_mod_mask;
old_char = -1;