From: Kai Großjohann Date: Mon, 20 May 2002 11:01:14 +0000 (+0000) Subject: (auto-coding-alist): Use no-conversion X-Git-Tag: ttn-vms-21-2-B4~14956 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6caef2da88d70cc24b8912303ba33d3817f9468f;p=emacs.git (auto-coding-alist): Use no-conversion for auto-save files. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b380603e0cf..b68ef87b2df 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2002-05-20 Kai Gro,A_(Bjohann + + * international/mule.el (auto-coding-alist): Use no-conversion + for auto-save files. + 2002-05-20 Miles Bader * files.el (find-file-read-args): Don't trash existing value of diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 8235ce58e65..58d876ea0d1 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -1461,7 +1461,8 @@ text, and convert it in the temporary buffer. Otherwise, convert in-place." (defcustom auto-coding-alist '(("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\|tar\\|tgz\\)\\'" . no-conversion) - ("\\.\\(gz\\|Z\\|bz\\|bz2\\|gpg\\)\\'" . no-conversion)) + ("\\.\\(gz\\|Z\\|bz\\|bz2\\|gpg\\)\\'" . no-conversion) + ("/#[^/]+#\\'" . 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.