]> git.eshelyaron.com Git - emacs.git/commitdiff
(auto-coding-alist): Use no-conversion
authorKai Großjohann <kgrossjo@eu.uu.net>
Mon, 20 May 2002 11:01:14 +0000 (11:01 +0000)
committerKai Großjohann <kgrossjo@eu.uu.net>
Mon, 20 May 2002 11:01:14 +0000 (11:01 +0000)
for auto-save files.

lisp/ChangeLog
lisp/international/mule.el

index b380603e0cf0b7c1d64f5e9dbc55396a633c45ae..b68ef87b2df3efe056ac68020ce53156d3fed79e 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-20  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
+
+       * international/mule.el (auto-coding-alist): Use no-conversion
+       for auto-save files.
+
 2002-05-20  Miles Bader  <miles@gnu.org>
 
        * files.el (find-file-read-args): Don't trash existing value of
index 8235ce58e658752cdfeeec389bcba31339873c62..58d876ea0d115f6bb3a156271457cf57a85765ca 100644 (file)
@@ -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.