changeset 45417:fe2a8cd911d0

(auto-coding-alist): Use no-conversion for auto-save files.
author Kai Großjohann <kgrossjo@eu.uu.net>
date Mon, 20 May 2002 11:01:14 +0000
parents c6aa7f66df20
children 8a2b953f3d6c
files lisp/ChangeLog lisp/international/mule.el
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon May 20 08:38:28 2002 +0000
+++ b/lisp/ChangeLog	Mon May 20 11:01:14 2002 +0000
@@ -1,3 +1,8 @@
+2002-05-20  Kai Gro,A_(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
--- a/lisp/international/mule.el	Mon May 20 08:38:28 2002 +0000
+++ b/lisp/international/mule.el	Mon May 20 11:01:14 2002 +0000
@@ -1461,7 +1461,8 @@
 
 (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.