diff options
| author | Reiner Steib | 2006-05-22 13:19:02 +0000 |
|---|---|---|
| committer | Reiner Steib | 2006-05-22 13:19:02 +0000 |
| commit | 35fdd9a77ab80f3160c5b39d137ccf66a0401fba (patch) | |
| tree | 946e3c794244f3fd8ea43c08563ab90d83a35b15 | |
| parent | bb8d35a25e9a993975e0af55bca4baba82bd1b61 (diff) | |
| download | emacs-35fdd9a77ab80f3160c5b39d137ccf66a0401fba.tar.gz emacs-35fdd9a77ab80f3160c5b39d137ccf66a0401fba.zip | |
(bibtex-maintain-sorted-entries): Quote safe-local-variable predicate.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/bibtex.el | 2 |
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 @@ | |||
| 1 | 2006-05-22 Reiner Steib <Reiner.Steib@gmx.de> | ||
| 2 | |||
| 3 | * textmodes/bibtex.el (bibtex-maintain-sorted-entries): Quote | ||
| 4 | safe-local-variable predicate. | ||
| 5 | |||
| 1 | 2006-05-22 Thien-Thi Nguyen <ttn@gnu.org> | 6 | 2006-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") |