eol-mnemonic-undecided if CODING-SYSTEM is nil.
+2002-11-06 Kenichi Handa <handa@m17n.org>
+
+ * international/mule.el (coding-system-eol-type-mnemonic): Use
+ eol-mnemonic-undecided if CODING-SYSTEM is nil.
+
2002-11-06 Kim F. Storm <storm@cua.dk>
* info.el (Info-fontify-node): Fixed hiding of *note references
(defun coding-system-eol-type-mnemonic (coding-system)
"Return the string indicating end-of-line format of CODING-SYSTEM."
(let* ((eol-type (coding-system-eol-type coding-system))
- (val (cond ((vectorp eol-type) eol-mnemonic-undecided)
- ((eq eol-type 0) eol-mnemonic-unix)
+ (val (cond ((eq eol-type 0) eol-mnemonic-unix)
((eq eol-type 1) eol-mnemonic-dos)
((eq eol-type 2) eol-mnemonic-mac)
- (t "-"))))
+ (t eol-mnemonic-undecided))))
(if (stringp val)
val
(char-to-string val))))