aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Großjohann2002-05-20 11:01:14 +0000
committerKai Großjohann2002-05-20 11:01:14 +0000
commit6caef2da88d70cc24b8912303ba33d3817f9468f (patch)
tree4923c337ac310c4938edea6450abaf42be94cb94
parentf2ba34f4ede9384f265f7884980e9c4c5c1af306 (diff)
downloademacs-6caef2da88d70cc24b8912303ba33d3817f9468f.tar.gz
emacs-6caef2da88d70cc24b8912303ba33d3817f9468f.zip
(auto-coding-alist): Use no-conversion
for auto-save files.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/international/mule.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b380603e0cf..b68ef87b2df 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-05-20 Kai Gro,A_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2
3 * international/mule.el (auto-coding-alist): Use no-conversion
4 for auto-save files.
5
12002-05-20 Miles Bader <miles@gnu.org> 62002-05-20 Miles Bader <miles@gnu.org>
2 7
3 * files.el (find-file-read-args): Don't trash existing value of 8 * 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."
1461 1461
1462(defcustom auto-coding-alist 1462(defcustom auto-coding-alist
1463 '(("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\|tar\\|tgz\\)\\'" . no-conversion) 1463 '(("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\|tar\\|tgz\\)\\'" . no-conversion)
1464 ("\\.\\(gz\\|Z\\|bz\\|bz2\\|gpg\\)\\'" . no-conversion)) 1464 ("\\.\\(gz\\|Z\\|bz\\|bz2\\|gpg\\)\\'" . no-conversion)
1465 ("/#[^/]+#\\'" . no-conversion))
1465 "Alist of filename patterns vs corresponding coding systems. 1466 "Alist of filename patterns vs corresponding coding systems.
1466Each element looks like (REGEXP . CODING-SYSTEM). 1467Each element looks like (REGEXP . CODING-SYSTEM).
1467A file whose name matches REGEXP is decoded by CODING-SYSTEM on reading. 1468A file whose name matches REGEXP is decoded by CODING-SYSTEM on reading.