diff options
| -rw-r--r-- | lisp/international/mule-conf.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/international/mule-conf.el b/lisp/international/mule-conf.el index 4be3916b454..87b792a3de1 100644 --- a/lisp/international/mule-conf.el +++ b/lisp/international/mule-conf.el | |||
| @@ -283,11 +283,12 @@ | |||
| 283 | 283 | ||
| 284 | ;; Setting coding system `undecided' for reading any files. Though, | 284 | ;; Setting coding system `undecided' for reading any files. Though, |
| 285 | ;; compiled Emacs Lisp files (*.elc) should never be decoded nor | 285 | ;; compiled Emacs Lisp files (*.elc) should never be decoded nor |
| 286 | ;; encoded. | 286 | ;; encoded. tar files too. |
| 287 | 287 | ||
| 288 | (setq file-coding-system-alist | 288 | (setq file-coding-system-alist |
| 289 | '(("\\.elc$" . (no-conversion . no-conversion)) | 289 | '(("\\.elc$" . (no-conversion . no-conversion)) |
| 290 | ("loaddefs.el$" . (no-conversion . no-conversion)) | 290 | ("loaddefs.el$" . (no-conversion . no-conversion)) |
| 291 | ("\\.tar$" . (no-conversion . no-conversion)) | ||
| 291 | ("" . (undecided . nil)))) | 292 | ("" . (undecided . nil)))) |
| 292 | 293 | ||
| 293 | 294 | ||