aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2000-12-01 06:20:04 +0000
committerKenichi Handa2000-12-01 06:20:04 +0000
commita584be024c78d1fedcd03ccd3b9e28f92ec87db3 (patch)
treec10471471e916d4e7848e27fb0f71853e61ca7c2
parent09df8881b75fdba8ff515fcc09bc9b86ba1df1ee (diff)
downloademacs-a584be024c78d1fedcd03ccd3b9e28f92ec87db3.tar.gz
emacs-a584be024c78d1fedcd03ccd3b9e28f92ec87db3.zip
(describe-char-after): Fix typo.
(describe-character-set, non-iso-charset-alist): Fix typo.
-rw-r--r--lisp/international/mule-diag.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el
index 44115dfe3c8..2e493be5c65 100644
--- a/lisp/international/mule-diag.el
+++ b/lisp/international/mule-diag.el
@@ -278,7 +278,7 @@ NON-ISO-CHARSET is a name (symbol) of the non-ISO charset.
278CHARSET-LIST is a list of Emacs' charsets into which characters of 278CHARSET-LIST is a list of Emacs' charsets into which characters of
279NON-ISO-CHARSET are mapped. 279NON-ISO-CHARSET are mapped.
280 280
281TRANSLATION-METHOD is a translatin table (symbol) to translate a 281TRANSLATION-METHOD is a translation table (symbol) to translate a
282character code of NON-ISO-CHARSET to the corresponding Emacs character 282character code of NON-ISO-CHARSET to the corresponding Emacs character
283code. It can also be a function to call with one argument, a 283code. It can also be a function to call with one argument, a
284character code in NON-ISO-CHARSET. 284character code in NON-ISO-CHARSET.
@@ -491,7 +491,7 @@ detailed meanings of these arguments."
491 (if (= (aref info 2) 1) 491 (if (= (aref info 2) 1)
492 (format "%d\n" (aref info 3)) 492 (format "%d\n" (aref info 3))
493 (format "%dx%d\n" (aref info 3) (aref info 3)))) 493 (format "%dx%d\n" (aref info 3) (aref info 3))))
494 (insert "the final char of ISO2022's desgination sequence: ") 494 (insert "the final char of ISO2022's designation sequence: ")
495 (if (aref info 8) 495 (if (aref info 8)
496 (insert (format "`%c'\n" (aref info 8))) 496 (insert (format "`%c'\n" (aref info 8)))
497 (insert "not assigned\n")) 497 (insert "not assigned\n"))
@@ -501,7 +501,7 @@ detailed meanings of these arguments."
501 (charset-multibyte-form-string charset))) 501 (charset-multibyte-form-string charset)))
502 (let ((coding (plist-get (aref info 14) 'preferred-coding-system))) 502 (let ((coding (plist-get (aref info 14) 'preferred-coding-system)))
503 (when coding 503 (when coding
504 (insert (format "prefered coding system: %s\n" coding)) 504 (insert (format "preferred coding system: %s\n" coding))
505 (search-backward (symbol-name coding)) 505 (search-backward (symbol-name coding))
506 (help-xref-button 0 #'describe-coding-system coding 506 (help-xref-button 0 #'describe-coding-system coding
507 "mouse-2, RET: describe this coding system"))) 507 "mouse-2, RET: describe this coding system")))
@@ -593,7 +593,7 @@ which font is being used for displaying the character."
593 (insert " " clm)) 593 (insert " " clm))
594 (insert "\n"))) 594 (insert "\n")))
595 (when composition 595 (when composition
596 (insert "\nComposed with the following characerter(s) " 596 (insert "\nComposed with the following character(s) "
597 (mapconcat (lambda (x) (format "`%c'" x)) 597 (mapconcat (lambda (x) (format "`%c'" x))
598 (substring composed 1) 598 (substring composed 1)
599 ", ") 599 ", ")