aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/keyboard.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 56ab79068ad..0eab8fdfae1 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -9596,7 +9596,16 @@ read_key_sequence (Lisp_Object *keybuf, Lisp_Object prompt,
9596 Fcons (make_lispy_switch_frame (frame), 9596 Fcons (make_lispy_switch_frame (frame),
9597 KVAR (interrupted_kboard, kbd_queue))); 9597 KVAR (interrupted_kboard, kbd_queue)));
9598 } 9598 }
9599 mock_input = 0; 9599 if (FIXNUMP (key) && XFIXNUM (key) == -2)
9600 mock_input = 0;
9601 else
9602 {
9603 /* If interrupted while initializing terminal, we
9604 need to replay the interrupting key. See
9605 Bug#5095 and Bug#37782. */
9606 mock_input = 1;
9607 keybuf[0] = key;
9608 }
9600 goto replay_entire_sequence; 9609 goto replay_entire_sequence;
9601 } 9610 }
9602 } 9611 }