From 7b3649abc9393a0db6ee3e9224c66cd1dc12de70 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg <bensberg@justemail.net> Date: Wed, 4 May 2016 08:48:03 +0200 Subject: [PATCH] input: don't take multiple keystrokes to be a single sequence For some reason the keyboard code seems to assume that all integers waiting in the keybuffer form a single sequence. But this isn't the case: when there is an escape (0x1b) among them, then that is where a new sequence starts. So, prevent the input code from considering an escape after a non-escape as part of the current sequence. This fixes https://savannah.gnu.org/bugs/?47839. --- src/winio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/winio.c b/src/winio.c index 70932515..81a4bb70 100644 --- a/src/winio.c +++ b/src/winio.c @@ -370,7 +370,7 @@ int parse_kbinput(WINDOW *win) case 1: /* Reset the escape counter. */ escapes = 0; - if (get_key_buffer_len() == 0) { + if (get_key_buffer_len() == 0 || key_buffer[0] == 0x1b) { /* One escape followed by a non-escape, and * there aren't any other keystrokes waiting: * meta key sequence mode. Set meta_key to -- GitLab