From: Eli Zaretskii Date: Thu, 7 Jun 2001 13:56:38 +0000 (+0000) Subject: (auto-coding-alist): Remove redundant X-Git-Tag: emacs-pretest-21.0.104~311 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4f16d1d1398b714adb900eee20d7f051622732da;p=emacs.git (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 . --- 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." (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.