diff options
author | Kenichi Handa <handa@m17n.org> | 1997-08-26 11:42:33 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-08-26 11:42:33 +0000 |
commit | 4328577a4e9822cc25d9de8611e0cee8e80f54e9 (patch) | |
tree | 09d762d64587409540e3153a63b4425fedb3c53a /src | |
parent | 93fb51ae2e0c5eb0295462d4da5859e7ddcc3114 (diff) | |
download | emacs-4328577a4e9822cc25d9de8611e0cee8e80f54e9.tar.gz |
(Fexecute_extended_command): Call Fread_from_minibuffer
with INHERIT-INPUT-METHOD nil.
Diffstat (limited to 'src')
-rw-r--r-- | src/keyboard.c | 3 |
1 files changed, 2 insertions, 1 deletions
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"); |