aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReiner Steib2006-05-22 13:19:02 +0000
committerReiner Steib2006-05-22 13:19:02 +0000
commit35fdd9a77ab80f3160c5b39d137ccf66a0401fba (patch)
tree946e3c794244f3fd8ea43c08563ab90d83a35b15
parentbb8d35a25e9a993975e0af55bca4baba82bd1b61 (diff)
downloademacs-35fdd9a77ab80f3160c5b39d137ccf66a0401fba.tar.gz
emacs-35fdd9a77ab80f3160c5b39d137ccf66a0401fba.zip
(bibtex-maintain-sorted-entries): Quote safe-local-variable predicate.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/bibtex.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c1a502308fa..92826811167 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-05-22 Reiner Steib <Reiner.Steib@gmx.de>
2
3 * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Quote
4 safe-local-variable predicate.
5
12006-05-22 Thien-Thi Nguyen <ttn@gnu.org> 62006-05-22 Thien-Thi Nguyen <ttn@gnu.org>
2 7
3 * emacs-lisp/ewoc.el (ewoc-set-data): New function. 8 * emacs-lisp/ewoc.el (ewoc-set-data): New function.
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index c2a9f697790..044c59d0cae 100644
--- a/lisp/textmodes/bibtex.el
+++ b/lisp/textmodes/bibtex.el
@@ -168,7 +168,7 @@ See also `bibtex-sort-ignore-string-entries'."
168 (const entry-class) 168 (const entry-class)
169 (const t))) 169 (const t)))
170(put 'bibtex-maintain-sorted-entries 'safe-local-variable 170(put 'bibtex-maintain-sorted-entries 'safe-local-variable
171 (lambda (a) (memq a '(nil t plain crossref entry-class)))) 171 '(lambda (a) (memq a '(nil t plain crossref entry-class))))
172 172
173(defcustom bibtex-sort-entry-class 173(defcustom bibtex-sort-entry-class
174 '(("String") 174 '(("String")