# HG changeset patch # User Kai Grojohann # Date 1021892474 0 # Node ID fe2a8cd911d0a2f1b0dccef0b9c72d180c9ff7ab # Parent c6aa7f66df200cd4297611251b5354c1593a8c0b (auto-coding-alist): Use no-conversion for auto-save files. diff -r c6aa7f66df20 -r fe2a8cd911d0 lisp/ChangeLog --- 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 + + * 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 -r c6aa7f66df20 -r fe2a8cd911d0 lisp/international/mule.el --- 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.