From: Richard M. Stallman Date: Mon, 10 Aug 1998 07:22:21 +0000 (+0000) Subject: (read_char): Don't decrement this_command_key_count when saving it. X-Git-Tag: emacs-20.3~90 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e43d17d3986a0352911bb56fba8298aaa84541c7;p=emacs.git (read_char): Don't decrement this_command_key_count when saving it. --- 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;