1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(auto-coding-alist): Remove redundant

up-cased versions of the extensions (auto-coding-alist-lookup is
case-insensitive where needed).  Recognize .gz, .Z, .bz, .bz2, and
.gpg files as binary.  Suggested by Karl Berry <karl@gnu.org>.
This commit is contained in:
Eli Zaretskii 2001-06-07 13:56:38 +00:00
parent 39cf43ac2d
commit 4f16d1d139

View File

@ -1225,7 +1225,7 @@ ARG is a list of coding categories ordered by priority."
(defcustom auto-coding-alist
'(("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\|tar\\|tgz\\)\\'" . no-conversion)
("\\.\\(ARC\\|ZIP\\|LZH\\|ZOO\\|JAR\\|TAR\\|TGZ\\)\\'" . no-conversion))
("\\.\\(gz\\|Z\\|bz\\|bz2\\|gpg\\)\\'" . 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.