aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1998-09-04 19:53:41 +0000
committerKarl Heuer1998-09-04 19:53:41 +0000
commitcd30a521aa838f6bcf08ee6ffb62986cd2bf8daa (patch)
tree74369b64a29d674dca8d6a5ba6208c00c27adc82
parentc613e27e591f00692535ba70acb44d54ef59e288 (diff)
downloademacs-cd30a521aa838f6bcf08ee6ffb62986cd2bf8daa.tar.gz
emacs-cd30a521aa838f6bcf08ee6ffb62986cd2bf8daa.zip
Doc fixes.
-rw-r--r--lisp/international/quail.el16
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.
98When a key sequence is mapped to TRANS and TRANS is a cons 98When a key sequence is mapped to TRANS and TRANS is a cons
99of actual translation and some Lisp object to be refered 99of actual translation and some Lisp object to be referred
100for translating the longer key sequence, this variable is set 100for translating the longer key sequence, this variable is set
101to that Lisp object.") 101to 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.
313This map is activated while convesion region is active but translation 313This map is activated while conversion region is active but translation
314region is not active.") 314region 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
382covers Quail translation region. 382covers Quail translation region.
383 383
384UPDATE-TRANSLATION-FUNCTION if non-nil is a function to call to update 384UPDATE-TRANSLATION-FUNCTION if non-nil is a function to call to update
385the current translation region accoding to a new translation data. By 385the current translation region according to a new translation data. By
386default, a translated text or a user's key sequence (if no transltion 386default, a translated text or a user's key sequence (if no translation
387for it) is inserted. 387for it) is inserted.
388 388
389CONVERSION-KEYS specifies additional key bindings used while 389CONVERSION-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.
1930This is a sub-directory of LEIM directory.") 1930This 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