]> git.eshelyaron.com Git - emacs.git/commitdiff
(describe-input-method): Call help-setup-xref here.
authorRichard M. Stallman <rms@gnu.org>
Sun, 3 Feb 2002 10:32:13 +0000 (10:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 3 Feb 2002 10:32:13 +0000 (10:32 +0000)
(describe-current-input-method): Doc fix.

lisp/international/mule-cmds.el

index 1f0186f4ccedfcee05fb3f92e613970b52056535..ef4e708cc9f703f2c3a7f4ed510b6b7516b9c2c5 100644 (file)
@@ -1137,6 +1137,9 @@ and enable that one.  The default is the most recent input method specified
          "Describe input method (default, current choice): ")))
   (if (and input-method (symbolp input-method))
       (setq input-method (symbol-name input-method)))
+  (help-setup-xref (list #'describe-input-method (or input-method current-input-method))
+                  (interactive-p))
+
   (if (null input-method)
       (describe-current-input-method)
     (let ((current current-input-method))
@@ -1157,7 +1160,8 @@ and enable that one.  The default is the most recent input method specified
                     input-method (nth 3 elt) (nth 1 elt) (nth 4 elt))))))))))
 
 (defun describe-current-input-method ()
-  "Describe the input method currently in use."
+  "Describe the input method currently in use.
+This is a subroutine for `describe-input-method'."
   (if current-input-method
       (if (and (symbolp describe-current-input-method-function)
               (fboundp describe-current-input-method-function))