aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2009-11-13 02:40:40 +0000
committerDan Nicolaescu2009-11-13 02:40:40 +0000
commitf70b89257e27648f72a025d7a6f41e0f72e8fdaa (patch)
tree8bfc857cef855809e6c2f5bce83a81064e4a399e
parent4d93a9e0613fdc150efabab765655d8773fe9234 (diff)
downloademacs-f70b89257e27648f72a025d7a6f41e0f72e8fdaa.tar.gz
emacs-f70b89257e27648f72a025d7a6f41e0f72e8fdaa.zip
(auto-coding-regexp-alist): Only purecopy
car or each item, not the whole list.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/international/mule.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index abb97e7b581..1cb15fb252f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-11-13 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * international/mule.el (auto-coding-regexp-alist): Only purecopy
4 car or each item, not the whole list.
5
12009-11-12 Stefan Monnier <monnier@iro.umontreal.ca> 62009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * minibuffer.el (minibuffer-completion-help): 8 * minibuffer.el (minibuffer-completion-help):
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index 7ccec501c7d..34bb916160a 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -1648,7 +1648,7 @@ and the contents of `file-coding-system-alist'."
1648 (symbol :tag "Coding system")))) 1648 (symbol :tag "Coding system"))))
1649 1649
1650(defcustom auto-coding-regexp-alist 1650(defcustom auto-coding-regexp-alist
1651 (purecopy 1651 (mapcar (lambda (arg) (cons (purecopy (car arg)) (cdr arg)))
1652 '(("\\`BABYL OPTIONS:[ \t]*-\\*-[ \t]*rmail[ \t]*-\\*-" . no-conversion) 1652 '(("\\`BABYL OPTIONS:[ \t]*-\\*-[ \t]*rmail[ \t]*-\\*-" . no-conversion)
1653 ("\\`\xFE\xFF" . utf-16be-with-signature) 1653 ("\\`\xFE\xFF" . utf-16be-with-signature)
1654 ("\\`\xFF\xFE" . utf-16le-with-signature) 1654 ("\\`\xFF\xFE" . utf-16le-with-signature)