aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-02-03 10:32:13 +0000
committerRichard M. Stallman2002-02-03 10:32:13 +0000
commitf80e2142fc2000fff4cad43019120113fade0a1d (patch)
treed3b613758880348bd4bd08a4a6daa29fbc8fe7b9
parent606e6135a8921ae2e4ab2175e43a358e5613a2cd (diff)
downloademacs-f80e2142fc2000fff4cad43019120113fade0a1d.tar.gz
emacs-f80e2142fc2000fff4cad43019120113fade0a1d.zip
(describe-input-method): Call help-setup-xref here.
(describe-current-input-method): Doc fix.
-rw-r--r--lisp/international/mule-cmds.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index 1f0186f4cce..ef4e708cc9f 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -1137,6 +1137,9 @@ and enable that one. The default is the most recent input method specified
1137 "Describe input method (default, current choice): "))) 1137 "Describe input method (default, current choice): ")))
1138 (if (and input-method (symbolp input-method)) 1138 (if (and input-method (symbolp input-method))
1139 (setq input-method (symbol-name input-method))) 1139 (setq input-method (symbol-name input-method)))
1140 (help-setup-xref (list #'describe-input-method (or input-method current-input-method))
1141 (interactive-p))
1142
1140 (if (null input-method) 1143 (if (null input-method)
1141 (describe-current-input-method) 1144 (describe-current-input-method)
1142 (let ((current current-input-method)) 1145 (let ((current current-input-method))
@@ -1157,7 +1160,8 @@ and enable that one. The default is the most recent input method specified
1157 input-method (nth 3 elt) (nth 1 elt) (nth 4 elt)))))))))) 1160 input-method (nth 3 elt) (nth 1 elt) (nth 4 elt))))))))))
1158 1161
1159(defun describe-current-input-method () 1162(defun describe-current-input-method ()
1160 "Describe the input method currently in use." 1163 "Describe the input method currently in use.
1164This is a subroutine for `describe-input-method'."
1161 (if current-input-method 1165 (if current-input-method
1162 (if (and (symbolp describe-current-input-method-function) 1166 (if (and (symbolp describe-current-input-method-function)
1163 (fboundp describe-current-input-method-function)) 1167 (fboundp describe-current-input-method-function))