]> git.eshelyaron.com Git - emacs.git/commitdiff
(read-input-method-name): Specify the input history properly.
authorRichard M. Stallman <rms@gnu.org>
Thu, 4 Sep 1997 05:54:38 +0000 (05:54 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 4 Sep 1997 05:54:38 +0000 (05:54 +0000)
(select-input-method): Improve prompt.

lisp/international/mule-cmds.el

index 0bfb3830ca36e31ab45018ca6bb3919a4ea054b4..d338ae0835b3188c642a70c538cb860cca78d785 100644 (file)
@@ -448,9 +448,9 @@ The return value is a string."
   (let* ((completion-ignore-case t)
         ;; This binding is necessary because input-method-history is
         ;; buffer local.
-        (minibuffer-history input-method-history)
         (input-method (completing-read prompt input-method-alist
-                                       nil t nil nil default)))
+                                       nil t nil 'input-method-history
+                                       default)))
     (if (> (length input-method) 0)
        input-method
       (if inhibit-null
@@ -498,7 +498,7 @@ and turn it on for the current buffer."
      (if (not enable-multibyte-characters)
         (error "Can't activate an input method while multibyte characters are disabled"))
      (list (read-input-method-name
-           (if default "Input method (default %s): " "Input method: ")
+           (if default "Select input method (default %s): " "Select input method: ")
            default t))))
   (activate-input-method input-method)
   (setq default-input-method input-method))