summaryrefslogtreecommitdiffstats
path: root/osdep/getch2.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/getch2.c')
-rw-r--r--osdep/getch2.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/osdep/getch2.c b/osdep/getch2.c
index f9528f33ea..f02f20e49c 100644
--- a/osdep/getch2.c
+++ b/osdep/getch2.c
@@ -405,9 +405,11 @@ bool getch2(struct input_ctx *input_ctx)
} else if (utf8_len == 1) {
switch (c) {
case 0x1b: /* ESC that's not part of escape sequence */
- mp_input_put_key(input_ctx, MP_KEY_ESC);
- if (getch2_len > 1 && getch2_buf[1] == 0x1b)
- walk_buf(1); /* eat the second ESC if it was typed twice */
+ /* only if ESC was typed twice, otherwise ignore it */
+ if (getch2_len > 1 && getch2_buf[1] == 0x1b) {
+ walk_buf(1); /* eat the second ESC */
+ mp_input_put_key(input_ctx, MP_KEY_ESC);
+ }
break;
default:
mp_input_put_key(input_ctx, c);