diff options
| -rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 4f2f2b816d0..2f448606464 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -7261,8 +7261,8 @@ DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_ | |||
| 7261 | 7261 | ||
| 7262 | /* If the command has a key binding, print it now. */ | 7262 | /* If the command has a key binding, print it now. */ |
| 7263 | if (!NILP (bindings) | 7263 | if (!NILP (bindings) |
| 7264 | && ! (ARRAYP (bindings) | 7264 | && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)), |
| 7265 | && EQ (Faref (Voverriding_local_map, bindings), Qmouse_movement))) | 7265 | Qmouse_movement))) |
| 7266 | { | 7266 | { |
| 7267 | /* But first wait, and skip the message if there is input. */ | 7267 | /* But first wait, and skip the message if there is input. */ |
| 7268 | if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings) | 7268 | if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings) |