diff options
| author | Kenichi Handa | 1997-08-26 11:42:33 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-08-26 11:42:33 +0000 |
| commit | 4328577a4e9822cc25d9de8611e0cee8e80f54e9 (patch) | |
| tree | 09d762d64587409540e3153a63b4425fedb3c53a /src | |
| parent | 93fb51ae2e0c5eb0295462d4da5859e7ddcc3114 (diff) | |
| download | emacs-4328577a4e9822cc25d9de8611e0cee8e80f54e9.tar.gz emacs-4328577a4e9822cc25d9de8611e0cee8e80f54e9.zip | |
(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_ | |||
| 7086 | history list. */ | 7086 | history list. */ |
| 7087 | function = Fcompleting_read (build_string (buf), | 7087 | function = Fcompleting_read (build_string (buf), |
| 7088 | Vobarray, Qcommandp, | 7088 | Vobarray, Qcommandp, |
| 7089 | Qt, Qnil, Qextended_command_history, Qnil); | 7089 | Qt, Qnil, Qextended_command_history, Qnil, |
| 7090 | Qnil); | ||
| 7090 | 7091 | ||
| 7091 | if (STRINGP (function) && XSTRING (function)->size == 0) | 7092 | if (STRINGP (function) && XSTRING (function)->size == 0) |
| 7092 | error ("No command name given"); | 7093 | error ("No command name given"); |