aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-05-10 03:24:32 +0000
committerRichard M. Stallman1997-05-10 03:24:32 +0000
commit5b467a52344dc0d74f0d792a57ab7b8e9f750e21 (patch)
treec5cf6fee54c81fc0e8297f42156baba2e8ccac9c /src
parent27908c4bfec8d9a31aef45281d0affda74d308da (diff)
downloademacs-5b467a52344dc0d74f0d792a57ab7b8e9f750e21.tar.gz
emacs-5b467a52344dc0d74f0d792a57ab7b8e9f750e21.zip
(Fexecute_extended_command): Pass new arg to Fcompleting_read.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 958bd3a007c..1e19b816135 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -7033,7 +7033,7 @@ DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_
7033 history list. */ 7033 history list. */
7034 function = Fcompleting_read (build_string (buf), 7034 function = Fcompleting_read (build_string (buf),
7035 Vobarray, Qcommandp, 7035 Vobarray, Qcommandp,
7036 Qt, Qnil, Qextended_command_history); 7036 Qt, Qnil, Qextended_command_history, Qnil);
7037 7037
7038 if (STRINGP (function) && XSTRING (function)->size == 0) 7038 if (STRINGP (function) && XSTRING (function)->size == 0)
7039 error ("No command name given"); 7039 error ("No command name given");