From: Richard M. Stallman Date: Tue, 20 Jun 1995 18:27:13 +0000 (+0000) Subject: (read_key_sequence): Don't use Vprefix_help_command X-Git-Tag: emacs-19.34~3517 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=24736fbc26443cc9aec548d3de1bf9bf675d162f;p=emacs.git (read_key_sequence): Don't use Vprefix_help_command for the first character in a key seq. --- diff --git a/src/keyboard.c b/src/keyboard.c index 8f0efb36f32..e63b3e06398 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -5550,7 +5550,7 @@ read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last, Lisp_Object head; head = EVENT_HEAD (key); - if (help_char_p (head)) + if (help_char_p (head) && t > 0) { read_key_sequence_cmd = Vprefix_help_command; keybuf[t++] = key;