From 787549348d7964565a262544d98d84a5a7733ab2 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 1 Sep 1997 10:44:31 +0000 Subject: [PATCH] (describe-input-method): Fix previous change. (read-multilingual-string): Likewise. (describe-language-environment): Prompt modified. --- lisp/international/mule-cmds.el | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index dfc3a686e22..376e9726e4b 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el @@ -532,7 +532,7 @@ When there's no input method to turn on, turn on what read from minibuffer." (interactive (list (read-input-method-name "Describe input method (default, current choice): "))) - (if (symbolp input-method) + (if (and input-method (symbolp input-method)) (setq input-method (symbol-name input-method))) (if (null input-method) (describe-current-input-method) @@ -565,12 +565,9 @@ or a string." (or input-method default-input-method (read-input-method-name "Input method: " nil t))) - (if (symbolp input-method) + (if (and input-method (symbolp input-method) (setq input-method (symbol-name input-method))) - (let ((current-input-method - (or input-method - default-input-method - (read-input-method-name "Input method: " nil t)))) + (let ((current-input-method input-method)) (read-string prompt initial-input nil nil t))) ;; Variables to control behavior of input methods. All input methods @@ -667,7 +664,10 @@ and sometimes other things." (defun describe-language-environment (language-name) "Describe how Emacs supports language environment LANGUAGE-NAME." - (interactive (list (read-language-name 'documentation "Language: "))) + (interactive + (list (read-language-name + 'documentation + "Describe language environment (default, current choise): "))) (if (null language-name) (setq language-name current-language-environment)) (if (or (null language-name) -- 2.39.2