From: Richard M. Stallman Date: Sat, 10 May 1997 03:24:32 +0000 (+0000) Subject: (Fexecute_extended_command): Pass new arg to Fcompleting_read. X-Git-Tag: emacs-20.1~2226 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5b467a52344dc0d74f0d792a57ab7b8e9f750e21;p=emacs.git (Fexecute_extended_command): Pass new arg to Fcompleting_read. --- 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_ history list. */ function = Fcompleting_read (build_string (buf), Vobarray, Qcommandp, - Qt, Qnil, Qextended_command_history); + Qt, Qnil, Qextended_command_history, Qnil); if (STRINGP (function) && XSTRING (function)->size == 0) error ("No command name given");