summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-08-10 07:22:21 +0000
committerRichard M. Stallman <rms@gnu.org>1998-08-10 07:22:21 +0000
commit61fa1a12a10419e756a233eba93c37ff5b685129 (patch)
tree65d4c16a7d24a238ee10bdcaa52e76bc62b81b6b
parent145d6afa57855a21e52817bd8b7c366498952888 (diff)
downloademacs-61fa1a12a10419e756a233eba93c37ff5b685129.tar.gz
(read_char): Don't decrement this_command_key_count when saving it.
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
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;