Mercurial > emacs
diff src/keyboard.c @ 20431:01f1baff05d3
(Fexecute_extended_command): Fix previous change.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Mon, 08 Dec 1997 06:58:14 +0000 |
| parents | efe9d1d6fc23 |
| children | 698bee206f03 |
line wrap: on
line diff
--- a/src/keyboard.c Mon Dec 08 01:57:31 1997 +0000 +++ b/src/keyboard.c Mon Dec 08 06:58:14 1997 +0000 @@ -7261,8 +7261,8 @@ /* If the command has a key binding, print it now. */ if (!NILP (bindings) - && ! (ARRAYP (bindings) - && EQ (Faref (Voverriding_local_map, bindings), Qmouse_movement))) + && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)), + Qmouse_movement))) { /* But first wait, and skip the message if there is input. */ if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings)
