diff options
| author | Richard M. Stallman | 1998-08-08 07:20:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-08-08 07:20:44 +0000 |
| commit | 39e643e20aa4d53f83f8300996bd2435ccad88ba (patch) | |
| tree | 02f7633d10323c1862c81eaf26f0e8af6d6c3a74 | |
| parent | 5f42a1d493427bb21d2c9c043d12b80b89cbd6ca (diff) | |
| download | emacs-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.el | 15 |
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. |
| 933 | Usually, the input method does not return while there's a possibility | 933 | Usually, the input method does not return while there's a possibility |
| 934 | that it may find a different translation if a user types another key. | 934 | that it may find a different translation if a user types another key. |
| 935 | But, it this flag is non-nil, the input method returns | 935 | But, it this flag is non-nil, the input method returns as soon as |
| 936 | as soon as the current key sequence reach any of valid translation.") | 936 | the 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. |
| 940 | Usually, the input method insert the intermediate key sequence | 940 | Usually, the input method inserts the intermediate key sequence, |
| 941 | or a candidate of translations corresponding to the sequence | 941 | or candidate translations corresponding to the sequence, |
| 942 | at the point of the current buffer. | 942 | at point in the current buffer. |
| 943 | But, if this flag is non-nil, they are shown in echo area.") | 943 | But, 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. |
| 947 | Usually, when a user types a key which doesn't start any character | 947 | Usually, when a user types a key which doesn't start any character |
| 948 | handled by the input method, the key is handled by turning off the | 948 | handled by the input method, the key is handled by turning off the |
| 949 | input method temporalily. After the key is handled, the input method is | 949 | input method temporarily. After that key, the input method is renabled. |
| 950 | back on. | ||
| 951 | But, if this flag is non-nil, the input method is never back on.") | 950 | But, if this flag is non-nil, the input method is never back on.") |
| 952 | 951 | ||
| 953 | 952 | ||