summaryrefslogtreecommitdiff
path: root/lisp/international/mule-diag.el
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2001-03-26 04:11:28 +0000
committerKenichi Handa <handa@m17n.org>2001-03-26 04:11:28 +0000
commit97b14492efbf9338f24e1747d194b379afde9fcb (patch)
tree3ccf37b73c429e921b783f9d98cf2a0670e54934 /lisp/international/mule-diag.el
parent9edbff6c6fa45a4cb42f3fa82cdc90368e9c6a07 (diff)
downloademacs-97b14492efbf9338f24e1747d194b379afde9fcb.tar.gz
(describe-coding-system): For raw-text and emacs-mule, don't add
anymore text about what charsets they can encode.
Diffstat (limited to 'lisp/international/mule-diag.el')
-rw-r--r--lisp/international/mule-diag.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el
index bbc818591a2..51ac6f79073 100644
--- a/lisp/international/mule-diag.el
+++ b/lisp/international/mule-diag.el
@@ -729,9 +729,12 @@ which font is being used for displaying the character."
(save-excursion
(set-buffer standard-output)
(let ((charsets (coding-system-get coding-system 'safe-charsets)))
- (when charsets
+ (when (and (not (memq (coding-system-base coding-system)
+ '(raw-text emacs-mule)))
+ charsets)
(if (eq charsets t)
- (insert "This coding system can encode all charsets.\n")
+ (insert "This coding system can encode all charsets except for
+eight-bit-control and eight-bit-graphic.\n")
(insert "This coding system encodes the following charsets:\n ")
(while charsets
(insert " " (symbol-name (car charsets)))