diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-07-26 22:03:03 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-07-26 22:03:03 +0000 |
commit | 79de6799c965595086a2c720aaf1c28057b9b762 (patch) | |
tree | b1856e62c446ff09ab9c17d4ee8b7092c33a1be3 | |
parent | d45da3e19ccb8a08c07d16585f4a29809397647a (diff) | |
download | emacs-79de6799c965595086a2c720aaf1c28057b9b762.tar.gz emacs-79de6799c965595086a2c720aaf1c28057b9b762.tar.bz2 emacs-79de6799c965595086a2c720aaf1c28057b9b762.zip |
(auto-coding-alist): Recognize .tar.
-rw-r--r-- | lisp/international/mule.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 97ac481ff70..50279de8836 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -773,8 +773,8 @@ LIST is a list of coding categories ordered by priority." ;;; FILE I/O (defvar auto-coding-alist - '(("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\)\\'" . no-conversion) - ("\\.\\(ARC\\|ZIP\\|LZH\\|ZOO\\|JAR\\)\\'" . no-conversion)) + '(("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\|tar\\)\\'" . no-conversion) + ("\\.\\(ARC\\|ZIP\\|LZH\\|ZOO\\|JAR\\|TAR\\)\\'" . no-conversion)) "Alist of filename patterns vs corresponding coding systems. Each element looks like (REGEXP . CODING-SYSTEM). A file whose name matches REGEXP is decoded by CODING-SYSTEM on reading. |