From: Kenichi Handa Date: Tue, 26 Aug 1997 11:42:33 +0000 (+0000) Subject: (Fexecute_extended_command): Call Fread_from_minibuffer X-Git-Tag: emacs-20.1~399 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4328577a4e9822cc25d9de8611e0cee8e80f54e9;p=emacs.git (Fexecute_extended_command): Call Fread_from_minibuffer with INHERIT-INPUT-METHOD nil. --- diff --git a/src/keyboard.c b/src/keyboard.c index 39629ae463a..1d0e36964ae 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -7086,7 +7086,8 @@ DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_ history list. */ function = Fcompleting_read (build_string (buf), Vobarray, Qcommandp, - Qt, Qnil, Qextended_command_history, Qnil); + Qt, Qnil, Qextended_command_history, Qnil, + Qnil); if (STRINGP (function) && XSTRING (function)->size == 0) error ("No command name given");