From 97b14492efbf9338f24e1747d194b379afde9fcb Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 26 Mar 2001 04:11:28 +0000 Subject: [PATCH] (describe-coding-system): For raw-text and emacs-mule, don't add anymore text about what charsets they can encode. --- lisp/international/mule-diag.el | 7 +++++-- 1 file 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))) -- 2.39.2