aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-08-08 07:20:44 +0000
committerRichard M. Stallman1998-08-08 07:20:44 +0000
commit39e643e20aa4d53f83f8300996bd2435ccad88ba (patch)
tree02f7633d10323c1862c81eaf26f0e8af6d6c3a74
parent5f42a1d493427bb21d2c9c043d12b80b89cbd6ca (diff)
downloademacs-39e643e20aa4d53f83f8300996bd2435ccad88ba.tar.gz
emacs-39e643e20aa4d53f83f8300996bd2435ccad88ba.zip
(input-method-exit-on-first-char)
(input-method-use-echo-area): Doc fixes.
-rw-r--r--lisp/international/mule-cmds.el15
1 files changed, 7 insertions, 8 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index cfaea5bcb59..a9eab9e9f2f 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -932,22 +932,21 @@ just inactivated.")
932 "This flag controls a timing when an input method returns. 932 "This flag controls a timing when an input method returns.
933Usually, the input method does not return while there's a possibility 933Usually, the input method does not return while there's a possibility
934that it may find a different translation if a user types another key. 934that it may find a different translation if a user types another key.
935But, it this flag is non-nil, the input method returns 935But, it this flag is non-nil, the input method returns as soon as
936as soon as the current key sequence reach any of valid translation.") 936the current key sequence gets long enough to have some valid translation.")
937 937
938(defvar input-method-use-echo-area nil 938(defvar input-method-use-echo-area nil
939 "This flag controls how an input method shows an intermediate key sequence. 939 "This flag controls how an input method shows an intermediate key sequence.
940Usually, the input method insert the intermediate key sequence 940Usually, the input method inserts the intermediate key sequence,
941or a candidate of translations corresponding to the sequence 941or candidate translations corresponding to the sequence,
942at the point of the current buffer. 942at point in the current buffer.
943But, if this flag is non-nil, they are shown in echo area.") 943But, if this flag is non-nil, it displays them in echo area instead.")
944 944
945(defvar input-method-exit-on-invalid-key nil 945(defvar input-method-exit-on-invalid-key nil
946 "This flag controls the behaviour of an input method on invalid key input. 946 "This flag controls the behaviour of an input method on invalid key input.
947Usually, when a user types a key which doesn't start any character 947Usually, when a user types a key which doesn't start any character
948handled by the input method, the key is handled by turning off the 948handled by the input method, the key is handled by turning off the
949input method temporalily. After the key is handled, the input method is 949input method temporarily. After that key, the input method is renabled.
950back on.
951But, if this flag is non-nil, the input method is never back on.") 950But, if this flag is non-nil, the input method is never back on.")
952 951
953 952