Mercurial > emacs
comparison lisp/international/mule-cmds.el @ 23966:f3102db5fde0
(prefer-coding-system): Fix previous change.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Thu, 31 Dec 1998 05:44:40 +0000 |
parents | 37905ac69d9c |
children | 0e0b1cdfbfe3 |
comparison
equal
deleted
inserted
replaced
23965:8a2363657bcc | 23966:f3102db5fde0 |
---|---|
263 (delq coding-category coding-category-list)))) | 263 (delq coding-category coding-category-list)))) |
264 (if (and base (interactive-p)) | 264 (if (and base (interactive-p)) |
265 (message "Highest priority is set to %s (base of %s)" | 265 (message "Highest priority is set to %s (base of %s)" |
266 base coding-system)) | 266 base coding-system)) |
267 ;; If they asked for specific EOL conversion, honor that. | 267 ;; If they asked for specific EOL conversion, honor that. |
268 (if (memq eol-type '(0 1 2 unix dos mac)) | 268 (if (memq eol-type '(0 1 2)) |
269 (setq coding-system | 269 (setq coding-system |
270 (coding-system-change-eol-conversion base eol-type)) | 270 (coding-system-change-eol-conversion base eol-type)) |
271 (setq coding-system base)) | 271 (setq coding-system base)) |
272 (set-default-coding-systems coding-system))) | 272 (set-default-coding-systems coding-system))) |
273 | 273 |