comparison lisp/international/mule-conf.el @ 34264:b0c17ac74953

(file-coding-system-alist): Use raw-text for reading loaddefs.el and raw-text-unix for writing it.
author Eli Zaretskii <eliz@gnu.org>
date Wed, 06 Dec 2000 13:54:17 +0000
parents 8fefc1be4352
children cb583146cc55
comparison
equal deleted inserted replaced
34263:56d868415168 34264:b0c17ac74953
416 ;; but we regard them as containing multibyte characters. 416 ;; but we regard them as containing multibyte characters.
417 ;; Tar files are not decoded at all, but we treat them as raw bytes. 417 ;; Tar files are not decoded at all, but we treat them as raw bytes.
418 418
419 (setq file-coding-system-alist 419 (setq file-coding-system-alist
420 '(("\\.elc\\'" . (emacs-mule . emacs-mule)) 420 '(("\\.elc\\'" . (emacs-mule . emacs-mule))
421 ("\\(\\`\\|/\\)loaddefs.el\\'" . (no-conversion . no-conversion)) 421 ;; We use raw-text for reading loaddefs.el so that if it
422 ;; happens to have DOS or Mac EOLs, they are converted to
423 ;; newlines. This is required to make the special treatment
424 ;; of the "\ newline" combination in loaddefs.el, which marks
425 ;; the beginning of a doc string, work.
426 ("\\(\\`\\|/\\)loaddefs.el\\'" . (raw-text . raw-text-unix))
422 ("\\.tar\\'" . (no-conversion . no-conversion)) 427 ("\\.tar\\'" . (no-conversion . no-conversion))
423 ("" . (undecided . nil)))) 428 ("" . (undecided . nil))))
424 429
425 430
426 ;;; Setting coding categories and their priorities. 431 ;;; Setting coding categories and their priorities.