(read_char): Don't decrement this_command_key_count when saving it.

This commit is contained in:
Richard M. Stallman 1998-08-10 07:22:21 +00:00
parent abdd729850
commit e43d17d398

View file

@ -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;