aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-08-08 14:06:02 +0000
committerStefan Monnier2007-08-08 14:06:02 +0000
commit4aaffda19b84c458cc5637c0e3b5dea5eea38fd6 (patch)
tree8fc006f1707812c635727db4dd21dba10df72ad3
parentece1116442ad1858cf122f0725a4650ef3d5e88e (diff)
downloademacs-4aaffda19b84c458cc5637c0e3b5dea5eea38fd6.tar.gz
emacs-4aaffda19b84c458cc5637c0e3b5dea5eea38fd6.zip
(auto-mode-alist): Use the purecopied text (duh!).
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/files.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f817d235f57..24d83794eac 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * files.el (auto-mode-alist): Use the purecopied text (duh!).
4
12007-08-08 Andreas Schwab <schwab@suse.de> 52007-08-08 Andreas Schwab <schwab@suse.de>
2 6
3 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook): Check for 7 * mail/mailabbrev.el (sendmail-pre-abbrev-expand-hook): Check for
diff --git a/lisp/files.el b/lisp/files.el
index 4d952f3f935..8ade456ee07 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -1886,7 +1886,7 @@ since only a single case-insensitive search through the alist is made."
1886 ;; c++-mode, java-mode and more) are added through autoload 1886 ;; c++-mode, java-mode and more) are added through autoload
1887 ;; directives in that file. That way is discouraged since it 1887 ;; directives in that file. That way is discouraged since it
1888 ;; spreads out the definition of the initial value. 1888 ;; spreads out the definition of the initial value.
1889 (mapc 1889 (mapcar
1890 (lambda (elt) 1890 (lambda (elt)
1891 (cons (purecopy (car elt)) (cdr elt))) 1891 (cons (purecopy (car elt)) (cdr elt)))
1892 `(;; do this first, so that .html.pl is Polish html, not Perl 1892 `(;; do this first, so that .html.pl is Polish html, not Perl