diff options
| -rw-r--r-- | lisp/international/quail.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/international/quail.el b/lisp/international/quail.el index f83cd222111..c06a16ff7ae 100644 --- a/lisp/international/quail.el +++ b/lisp/international/quail.el | |||
| @@ -96,7 +96,7 @@ BLOCKS is a number of blocks of translation.") | |||
| 96 | (defvar quail-current-data nil | 96 | (defvar quail-current-data nil |
| 97 | "Any Lisp object holding information of current translation status. | 97 | "Any Lisp object holding information of current translation status. |
| 98 | When a key sequence is mapped to TRANS and TRANS is a cons | 98 | When a key sequence is mapped to TRANS and TRANS is a cons |
| 99 | of actual translation and some Lisp object to be refered | 99 | of actual translation and some Lisp object to be referred |
| 100 | for translating the longer key sequence, this variable is set | 100 | for translating the longer key sequence, this variable is set |
| 101 | to that Lisp object.") | 101 | to that Lisp object.") |
| 102 | (make-variable-buffer-local 'quail-current-data) | 102 | (make-variable-buffer-local 'quail-current-data) |
| @@ -310,7 +310,7 @@ This map is activated while translation region is active.") | |||
| 310 | (define-key map [backspace] 'quail-conversion-backward-delete-char) | 310 | (define-key map [backspace] 'quail-conversion-backward-delete-char) |
| 311 | map) | 311 | map) |
| 312 | "Keymap used for processing conversion in Quail mode. | 312 | "Keymap used for processing conversion in Quail mode. |
| 313 | This map is activated while convesion region is active but translation | 313 | This map is activated while conversion region is active but translation |
| 314 | region is not active.") | 314 | region is not active.") |
| 315 | 315 | ||
| 316 | ;;;###autoload | 316 | ;;;###autoload |
| @@ -382,8 +382,8 @@ OVERLAY-PLIST if non-nil is a property list put on an overlay which | |||
| 382 | covers Quail translation region. | 382 | covers Quail translation region. |
| 383 | 383 | ||
| 384 | UPDATE-TRANSLATION-FUNCTION if non-nil is a function to call to update | 384 | UPDATE-TRANSLATION-FUNCTION if non-nil is a function to call to update |
| 385 | the current translation region accoding to a new translation data. By | 385 | the current translation region according to a new translation data. By |
| 386 | default, a translated text or a user's key sequence (if no transltion | 386 | default, a translated text or a user's key sequence (if no translation |
| 387 | for it) is inserted. | 387 | for it) is inserted. |
| 388 | 388 | ||
| 389 | CONVERSION-KEYS specifies additional key bindings used while | 389 | CONVERSION-KEYS specifies additional key bindings used while |
| @@ -614,7 +614,7 @@ you type is correctly handled." | |||
| 614 | ch | 614 | ch |
| 615 | (let ((char (aref quail-keyboard-layout-standard i))) | 615 | (let ((char (aref quail-keyboard-layout-standard i))) |
| 616 | (if (= char ?\ ) | 616 | (if (= char ?\ ) |
| 617 | ;; A user typed a key at the location not convered by | 617 | ;; A user typed a key at the location not converted by |
| 618 | ;; quail-keyboard-layout-standard. Just return CH as | 618 | ;; quail-keyboard-layout-standard. Just return CH as |
| 619 | ;; well as above. | 619 | ;; well as above. |
| 620 | ch | 620 | ch |
| @@ -912,7 +912,7 @@ The returned value is a Quail map specific to KEY." | |||
| 912 | (quail-keyboard-translate key) key) | 912 | (quail-keyboard-translate key) key) |
| 913 | (cdr (quail-map)))) | 913 | (cdr (quail-map)))) |
| 914 | (null key)) | 914 | (null key)) |
| 915 | ;; Ok, we can start translation. | 915 | ;; OK, we can start translation. |
| 916 | (let* ((echo-keystrokes 0) | 916 | (let* ((echo-keystrokes 0) |
| 917 | (help-char nil) | 917 | (help-char nil) |
| 918 | (overriding-terminal-local-map (quail-translation-keymap)) | 918 | (overriding-terminal-local-map (quail-translation-keymap)) |
| @@ -1926,7 +1926,7 @@ key binding | |||
| 1926 | 1926 | ||
| 1927 | 1927 | ||
| 1928 | (defvar quail-directory-name "quail" | 1928 | (defvar quail-directory-name "quail" |
| 1929 | "Name of Quail directory which cotains Quail packages. | 1929 | "Name of Quail directory which contains Quail packages. |
| 1930 | This is a sub-directory of LEIM directory.") | 1930 | This is a sub-directory of LEIM directory.") |
| 1931 | 1931 | ||
| 1932 | ;;;###autoload | 1932 | ;;;###autoload |
| @@ -1984,7 +1984,7 @@ of each directory." | |||
| 1984 | (message "Garbage in %s deleted" leim-list) | 1984 | (message "Garbage in %s deleted" leim-list) |
| 1985 | (delete-region pos (point-max))))))) | 1985 | (delete-region pos (point-max))))))) |
| 1986 | 1986 | ||
| 1987 | ;; Search for `quail' subdirector under each DIRNAMES. | 1987 | ;; Search for `quail' subdirectory under each DIRNAMES. |
| 1988 | (setq dirnames (cons dirname dirnames)) | 1988 | (setq dirnames (cons dirname dirnames)) |
| 1989 | (let ((l dirnames)) | 1989 | (let ((l dirnames)) |
| 1990 | (while l | 1990 | (while l |