diff options
| author | Kenichi Handa | 2001-03-26 04:11:28 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2001-03-26 04:11:28 +0000 |
| commit | 97b14492efbf9338f24e1747d194b379afde9fcb (patch) | |
| tree | 3ccf37b73c429e921b783f9d98cf2a0670e54934 | |
| parent | 9edbff6c6fa45a4cb42f3fa82cdc90368e9c6a07 (diff) | |
| download | emacs-97b14492efbf9338f24e1747d194b379afde9fcb.tar.gz emacs-97b14492efbf9338f24e1747d194b379afde9fcb.zip | |
(describe-coding-system): For raw-text and emacs-mule, don't add
anymore text about what charsets they can encode.
| -rw-r--r-- | lisp/international/mule-diag.el | 7 |
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." | |||
| 729 | (save-excursion | 729 | (save-excursion |
| 730 | (set-buffer standard-output) | 730 | (set-buffer standard-output) |
| 731 | (let ((charsets (coding-system-get coding-system 'safe-charsets))) | 731 | (let ((charsets (coding-system-get coding-system 'safe-charsets))) |
| 732 | (when charsets | 732 | (when (and (not (memq (coding-system-base coding-system) |
| 733 | '(raw-text emacs-mule))) | ||
| 734 | charsets) | ||
| 733 | (if (eq charsets t) | 735 | (if (eq charsets t) |
| 734 | (insert "This coding system can encode all charsets.\n") | 736 | (insert "This coding system can encode all charsets except for |
| 737 | eight-bit-control and eight-bit-graphic.\n") | ||
| 735 | (insert "This coding system encodes the following charsets:\n ") | 738 | (insert "This coding system encodes the following charsets:\n ") |
| 736 | (while charsets | 739 | (while charsets |
| 737 | (insert " " (symbol-name (car charsets))) | 740 | (insert " " (symbol-name (car charsets))) |