Mercurial > emacs
changeset 21713:aa160e4358ac
(file-coding-system-alist): Use emacs-mule for .elc files.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 23 Apr 1998 01:34:49 +0000 |
parents | 36667ebd744e |
children | 9c454e5e03fa |
files | lisp/international/mule-conf.el |
diffstat | 1 files changed, 5 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/international/mule-conf.el Wed Apr 22 17:48:16 1998 +0000 +++ b/lisp/international/mule-conf.el Thu Apr 23 01:34:49 1998 +0000 @@ -309,12 +309,13 @@ ;; The other coding-systems are defined in each language specific ;; section of languages.el. -;; Setting coding system `undecided' for reading any files. Though, -;; compiled Emacs Lisp files (*.elc) should never be decoded nor -;; encoded. tar files too. +;; Normally, set coding system to `undecided' before reading a file. +;; Compiled Emacs Lisp files (*.elc) are not decoded at all, +;; but we regard them as containing multibyte characters. +;; Tar files are not decoded at all, but we treat them as raw bytes. (setq file-coding-system-alist - '(("\\.elc$" . (no-conversion . no-conversion)) + '(("\\.elc$" . (emacs-mule . emacs-mule)) ("\\(\\`\\|/\\)loaddefs.el$" . (no-conversion . no-conversion)) ("\\.tar$" . (no-conversion . no-conversion)) ("" . (undecided . nil))))