summaryrefslogtreecommitdiffstats
path: root/src/getchar.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-02-20 19:05:10 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-20 19:05:10 +0000
commitad6c45f62558e03d3e3a927b3fe4dbaf30a36bef (patch)
treee9619435354b3b6b9b4725c63c8cd99b6f3c295d /src/getchar.c
parentc1e6c7bafec1115b690c745a28e1a6338750b137 (diff)
patch 8.2.4427: getchar() may return modifiers if no character is availablev8.2.4427
Problem: getchar() may return modifiers if no character is available. Solution: Do not process modifiers when there is no character. (closes #9806)
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/getchar.c b/src/getchar.c
index 2068ca43c9..fcc9b9ac42 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -2103,7 +2103,7 @@ getchar_common(typval_T *argvars, typval_T *rettv)
set_vim_var_nr(VV_MOUSE_COL, 0);
rettv->vval.v_number = n;
- if (IS_SPECIAL(n) || mod_mask != 0)
+ if (n != 0 && (IS_SPECIAL(n) || mod_mask != 0))
{
char_u temp[10]; // modifier: 3, mbyte-char: 6, NUL: 1
int i = 0;