aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorKenichi Handa1997-12-08 06:58:14 +0000
committerKenichi Handa1997-12-08 06:58:14 +0000
commitee1125672014eb8a4e31d35f23ad3e7fd3a1820d (patch)
tree609265e2afe24153716e18782afd7ed9febb500d /src/keyboard.c
parent4d2caa0732b95a6a96252aeab7100f33b11a6ad3 (diff)
downloademacs-ee1125672014eb8a4e31d35f23ad3e7fd3a1820d.tar.gz
emacs-ee1125672014eb8a4e31d35f23ad3e7fd3a1820d.zip
(Fexecute_extended_command): Fix previous change.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c4
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)