+2002-11-05 Juanma Barranquero <lektu@terra.es>
+
+ * international/mule.el (coding-system-eol-type-mnemonic): Move from
+ mule-util.el.
+
+ * international/mule-util.el (coding-system-eol-type-mnemonic): Move to
+ mule.el.
+
2002-11-04 Juanma Barranquero <lektu@terra.es>
* files.el (find-buffer-visiting): Accept new optional PREDICATE
;; (("\e$B$3\e(Bh\e$B$s\e(Be\e$B$K\e(Bl\e$B$A\e(Bl\e$B$O\e(Bo" 13 4 ?x "\e$BF|K\8l\e(B") . "xex\e$BF|K\8l\e(B")
;; ))
;; (let (ret)
-;; (condition-case e
+;; (condition-case e
;; (setq ret (apply #'truncate-string-to-width (car test)))
;; (error (setq ret e)))
;; (unless (equal ret (cdr test))
\f
;; Coding system related functions.
-;;;###autoload
-(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)
- ((eq eol-type 1) eol-mnemonic-dos)
- ((eq eol-type 2) eol-mnemonic-mac)
- (t "-"))))
- (if (stringp val)
- val
- (char-to-string val))))
-
;;;###autoload
(defun coding-system-post-read-conversion (coding-system)
"Return the value of CODING-SYSTEM's `post-read-conversion' property."