aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 399149ae978..6b7a6bfa743 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -8919,7 +8919,6 @@ read_key_sequence (Lisp_Object *keybuf, int bufsize, Lisp_Object prompt,
8919 ptrdiff_t keys_start; 8919 ptrdiff_t keys_start;
8920 8920
8921 Lisp_Object current_binding = Qnil; 8921 Lisp_Object current_binding = Qnil;
8922 Lisp_Object first_event = Qnil;
8923 8922
8924 /* Index of the first key that has no binding. 8923 /* Index of the first key that has no binding.
8925 It is useless to try fkey.start larger than that. */ 8924 It is useless to try fkey.start larger than that. */
@@ -9029,6 +9028,7 @@ read_key_sequence (Lisp_Object *keybuf, int bufsize, Lisp_Object prompt,
9029 9028
9030 starting_buffer = current_buffer; 9029 starting_buffer = current_buffer;
9031 first_unbound = bufsize + 1; 9030 first_unbound = bufsize + 1;
9031 Lisp_Object first_event = mock_input > 0 ? keybuf[0] : Qnil;
9032 9032
9033 /* Build our list of keymaps. 9033 /* Build our list of keymaps.
9034 If we recognize a function key and replace its escape sequence in 9034 If we recognize a function key and replace its escape sequence in