aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKai Großjohann <[email protected]>2002-05-20 11:01:14 +0000
committerKai Großjohann <[email protected]>2002-05-20 11:01:14 +0000
commit6caef2da88d70cc24b8912303ba33d3817f9468f (patch)
tree4923c337ac310c4938edea6450abaf42be94cb94 /lisp
parentf2ba34f4ede9384f265f7884980e9c4c5c1af306 (diff)
(auto-coding-alist): Use no-conversion
for auto-save files.
Diffstat (limited to 'lisp')
-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 b380603e0c..b68ef87b2d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-20 Kai Gro,A_(Bjohann <[email protected]>
+
+ * international/mule.el (auto-coding-alist): Use no-conversion
+ for auto-save files.
+
2002-05-20 Miles Bader <[email protected]>
* 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 8235ce58e6..58d876ea0d 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.