(coding-system-eol-type-mnemonic): Return correct eol-type mnemonics
for the nonunix cases.
This commit is contained in:
parent
e76351bcf4
commit
9140684333
1 changed files with 2 additions and 2 deletions
|
@ -216,8 +216,8 @@ Optional 3rd argument NIL-FOR-TOO-LONG non-nil means return nil
|
|||
(let ((eol-type (coding-system-eol-type coding-system)))
|
||||
(cond ((vectorp eol-type) eol-mnemonic-undecided)
|
||||
((eq eol-type 0) eol-mnemonic-unix)
|
||||
((eq eol-type 1) eol-mnemonic-unix)
|
||||
((eq eol-type 2) eol-mnemonic-unix)
|
||||
((eq eol-type 1) eol-mnemonic-dos)
|
||||
((eq eol-type 2) eol-mnemonic-mac)
|
||||
(t ?-))))
|
||||
|
||||
;;;###autoload
|
||||
|
|
Loading…
Add table
Reference in a new issue