From 4f16d1d1398b714adb900eee20d7f051622732da Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 7 Jun 2001 13:56:38 +0000 Subject: [PATCH] (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 . --- lisp/international/mule.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.5