diff options
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/obsolete/fast-lock.el | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4e749d12140..df9232d40e0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2006-09-16 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * obsolete/fast-lock.el (fast-lock-cache-data): Provide 2nd arg to | ||
| 4 | font-lock-compile-keywords. | ||
| 5 | |||
| 6 | * font-lock.el (font-lock-compile-keywords): Rename optional arg | ||
| 7 | to SYNTACTIC-KEYWORDS and reverse the sense. All callers changed. | ||
| 8 | |||
| 1 | 2006-09-16 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 9 | 2006-09-16 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 10 | ||
| 3 | * cus-start.el (all): Add x-gtk-show-chooser-help-text. | 11 | * cus-start.el (all): Add x-gtk-show-chooser-help-text. |
diff --git a/lisp/obsolete/fast-lock.el b/lisp/obsolete/fast-lock.el index 60c7988a66b..de4b494826a 100644 --- a/lisp/obsolete/fast-lock.el +++ b/lisp/obsolete/fast-lock.el | |||
| @@ -623,9 +623,9 @@ See `fast-lock-cache-directory'." | |||
| 623 | ;; Compile all keywords in case some are and some aren't. | 623 | ;; Compile all keywords in case some are and some aren't. |
| 624 | (when font-lock-syntactic-keywords | 624 | (when font-lock-syntactic-keywords |
| 625 | (setq font-lock-syntactic-keywords (font-lock-compile-keywords | 625 | (setq font-lock-syntactic-keywords (font-lock-compile-keywords |
| 626 | font-lock-syntactic-keywords))) | 626 | font-lock-syntactic-keywords t))) |
| 627 | (when syntactic-keywords | 627 | (when syntactic-keywords |
| 628 | (setq syntactic-keywords (font-lock-compile-keywords syntactic-keywords))) | 628 | (setq syntactic-keywords (font-lock-compile-keywords syntactic-keywords t))) |
| 629 | (setq font-lock-keywords (font-lock-compile-keywords font-lock-keywords) | 629 | (setq font-lock-keywords (font-lock-compile-keywords font-lock-keywords) |
| 630 | keywords (font-lock-compile-keywords keywords)) | 630 | keywords (font-lock-compile-keywords keywords)) |
| 631 | ;; Use the Font Lock cache SYNTACTIC-PROPERTIES and FACE-PROPERTIES if we're | 631 | ;; Use the Font Lock cache SYNTACTIC-PROPERTIES and FACE-PROPERTIES if we're |