]> git.eshelyaron.com Git - emacs.git/commitdiff
(file-coding-system-alist): Use emacs-mule for .elc files.
authorRichard M. Stallman <rms@gnu.org>
Thu, 23 Apr 1998 01:34:49 +0000 (01:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 23 Apr 1998 01:34:49 +0000 (01:34 +0000)
lisp/international/mule-conf.el

index a083b959e56cae49109c8e4e0ebecb40eb465590..41ac7b7971a6ad5aa553291a8b6ecab3784b56c9 100644 (file)
 ;; 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))))