aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2001-02-21 14:52:40 +0000
committerDave Love2001-02-21 14:52:40 +0000
commit0b6cadfffa373aa6f2436e00c515fb0626f79029 (patch)
treee9cb340ce6bc9771191215b19e60032f4326f49b
parent62095f01d2d71ffab25d400217cedc23b153e4c1 (diff)
downloademacs-0b6cadfffa373aa6f2436e00c515fb0626f79029.tar.gz
emacs-0b6cadfffa373aa6f2436e00c515fb0626f79029.zip
Doc fixes.
-rw-r--r--lisp/international/mule-cmds.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index d3516b39cc2..d7d5408c9ba 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -988,18 +988,18 @@ DESCRIPTION is a string describing this method and what it is good for.
988The ARGS, if any, are passed as arguments to ACTIVATE-FUNC. 988The ARGS, if any, are passed as arguments to ACTIVATE-FUNC.
989All told, the arguments to ACTIVATE-FUNC are INPUT-METHOD and the ARGS. 989All told, the arguments to ACTIVATE-FUNC are INPUT-METHOD and the ARGS.
990 990
991This function is mainly used in the file \"leim-list.el\" which is 991This function is mainly used in the file \"leim-list.el\", which is
992created at building time of emacs, registering all quail input methods 992created at Emacs build time to register all Quail input methods
993contained in the emacs distribution. 993contained in the Emacs distribution.
994 994
995In case you want to register a new quail input method by yourself, be 995In case you want to register a new Quail input method by yourself, be
996careful to use the same input method title as given in the third 996careful to use the same input method title as given in the third
997parameter of `quail-define-package' (if the values are different, the 997parameter of `quail-define-package'. (If the values are different, the
998string specified in this function takes precedence). 998string specified in this function takes precedence.)
999 999
1000The commands `describe-input-method' and `list-input-methods' need 1000The commands `describe-input-method' and `list-input-methods' need
1001this duplicated values to show some information about input methods 1001these duplicated values to show some information about input methods
1002without loading the affected quail packages." 1002without loading the relevant Quail packages."
1003 (if (symbolp lang-env) 1003 (if (symbolp lang-env)
1004 (setq lang-env (symbol-name lang-env))) 1004 (setq lang-env (symbol-name lang-env)))
1005 (if (symbolp input-method) 1005 (if (symbolp input-method)
@@ -1014,7 +1014,7 @@ without loading the affected quail packages."
1014(defun read-input-method-name (prompt &optional default inhibit-null) 1014(defun read-input-method-name (prompt &optional default inhibit-null)
1015 "Read a name of input method from a minibuffer prompting with PROMPT. 1015 "Read a name of input method from a minibuffer prompting with PROMPT.
1016If DEFAULT is non-nil, use that as the default, 1016If DEFAULT is non-nil, use that as the default,
1017 and substitute it into PROMPT at the first `%s'. 1017and substitute it into PROMPT at the first `%s'.
1018If INHIBIT-NULL is non-nil, null input signals an error. 1018If INHIBIT-NULL is non-nil, null input signals an error.
1019 1019
1020The return value is a string." 1020The return value is a string."
@@ -1233,7 +1233,7 @@ just inactivated.")
1233 "Normal hook run just after an input method insert some chunk of text.") 1233 "Normal hook run just after an input method insert some chunk of text.")
1234 1234
1235(defvar input-method-exit-on-first-char nil 1235(defvar input-method-exit-on-first-char nil
1236 "This flag controls a timing when an input method returns. 1236 "This flag controls when an input method returns.
1237Usually, the input method does not return while there's a possibility 1237Usually, the input method does not return while there's a possibility
1238that it may find a different translation if a user types another key. 1238that it may find a different translation if a user types another key.
1239But, it this flag is non-nil, the input method returns as soon as 1239But, it this flag is non-nil, the input method returns as soon as