# HG changeset patch # User Richard M. Stallman # Date 869962028 0 # Node ID b07745668138733ee27fdcab07ee1f00de620aee # Parent f2ce7e947ec93d3518895ded79202cea692e8488 (file-coding-system-alist): Use no-conversion for tar files. diff -r f2ce7e947ec9 -r b07745668138 lisp/international/mule-conf.el --- a/lisp/international/mule-conf.el Sun Jul 27 00:06:20 1997 +0000 +++ b/lisp/international/mule-conf.el Sun Jul 27 00:07:08 1997 +0000 @@ -283,11 +283,12 @@ ;; Setting coding system `undecided' for reading any files. Though, ;; compiled Emacs Lisp files (*.elc) should never be decoded nor -;; encoded. +;; encoded. tar files too. (setq file-coding-system-alist '(("\\.elc$" . (no-conversion . no-conversion)) ("loaddefs.el$" . (no-conversion . no-conversion)) + ("\\.tar$" . (no-conversion . no-conversion)) ("" . (undecided . nil))))