From e43d17d3986a0352911bb56fba8298aaa84541c7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 10 Aug 1998 07:22:21 +0000 Subject: [PATCH] (read_char): Don't decrement this_command_key_count when saving it. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keyboard.c b/src/keyboard.c index 4bad07131d6..2afeca31242 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -2363,7 +2363,7 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu) && (unsigned) XINT (c) < 127) { Lisp_Object keys; - int key_count = this_command_key_count - 1; + int key_count = this_command_key_count; int saved = current_kboard->immediate_echo; struct gcpro gcpro1; -- 2.39.5