aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-06-07 13:56:38 +0000
committerEli Zaretskii2001-06-07 13:56:38 +0000
commit4f16d1d1398b714adb900eee20d7f051622732da (patch)
tree80ba1b63db0e1489508963c68b899542d32ffc22
parent39cf43ac2d9ed5713dad6bf3b501bf25ed65312e (diff)
downloademacs-4f16d1d1398b714adb900eee20d7f051622732da.tar.gz
emacs-4f16d1d1398b714adb900eee20d7f051622732da.zip
(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>.
-rw-r--r--lisp/international/mule.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index 416e20fdebe..4700abcc186 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -1225,7 +1225,7 @@ ARG is a list of coding categories ordered by priority."
1225 1225
1226(defcustom auto-coding-alist 1226(defcustom auto-coding-alist
1227 '(("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\|tar\\|tgz\\)\\'" . no-conversion) 1227 '(("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\|tar\\|tgz\\)\\'" . no-conversion)
1228 ("\\.\\(ARC\\|ZIP\\|LZH\\|ZOO\\|JAR\\|TAR\\|TGZ\\)\\'" . no-conversion)) 1228 ("\\.\\(gz\\|Z\\|bz\\|bz2\\|gpg\\)\\'" . no-conversion))
1229 "Alist of filename patterns vs corresponding coding systems. 1229 "Alist of filename patterns vs corresponding coding systems.
1230Each element looks like (REGEXP . CODING-SYSTEM). 1230Each element looks like (REGEXP . CODING-SYSTEM).
1231A file whose name matches REGEXP is decoded by CODING-SYSTEM on reading. 1231A file whose name matches REGEXP is decoded by CODING-SYSTEM on reading.