diff options
| -rw-r--r-- | lisp/international/mule-diag.el | 8 |
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. | |||
| 278 | CHARSET-LIST is a list of Emacs' charsets into which characters of | 278 | CHARSET-LIST is a list of Emacs' charsets into which characters of |
| 279 | NON-ISO-CHARSET are mapped. | 279 | NON-ISO-CHARSET are mapped. |
| 280 | 280 | ||
| 281 | TRANSLATION-METHOD is a translatin table (symbol) to translate a | 281 | TRANSLATION-METHOD is a translation table (symbol) to translate a |
| 282 | character code of NON-ISO-CHARSET to the corresponding Emacs character | 282 | character code of NON-ISO-CHARSET to the corresponding Emacs character |
| 283 | code. It can also be a function to call with one argument, a | 283 | code. It can also be a function to call with one argument, a |
| 284 | character code in NON-ISO-CHARSET. | 284 | character 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 | ", ") |