aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-09-11 19:05:59 +0000
committerRichard M. Stallman1997-09-11 19:05:59 +0000
commitca6e03c2852f431ee5fc0d4b9e529539024e6eea (patch)
treedb3d6b2b613e727493e4772db6fb0ed6c8ddb38d
parent89752145b5c217065527e106ca8e1a27a40d7c29 (diff)
downloademacs-ca6e03c2852f431ee5fc0d4b9e529539024e6eea.tar.gz
emacs-ca6e03c2852f431ee5fc0d4b9e529539024e6eea.zip
(describe-coding-system): Describe coding systems of type 5, raw-text.
-rw-r--r--lisp/international/mule-diag.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el
index 298408258f1..32b80a583d0 100644
--- a/lisp/international/mule-diag.el
+++ b/lisp/international/mule-diag.el
@@ -186,7 +186,9 @@ but contains full information about each character sets."
186 (princ " (Big5)")) 186 (princ " (Big5)"))
187 ((eq type 4) 187 ((eq type 4)
188 (princ " (do conversion by CCL program)")) 188 (princ " (do conversion by CCL program)"))
189 (t (princ "invalid coding-system.")))) 189 ((eq type 5)
190 (princ " (text with random binary characters)"))
191 (t (princ ": invalid coding-system."))))
190 (princ "\nEOL type:\n ") 192 (princ "\nEOL type:\n ")
191 (let ((eol-type (coding-system-eol-type coding-system))) 193 (let ((eol-type (coding-system-eol-type coding-system)))
192 (cond ((vectorp eol-type) 194 (cond ((vectorp eol-type)