From: Richard M. Stallman Date: Sat, 16 Sep 2006 17:55:13 +0000 (+0000) Subject: (fast-lock-cache-data): Provide 2nd arg to font-lock-compile-keywords. X-Git-Tag: emacs-pretest-22.0.90~510 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9af0a0b9c876bbbcc33401022dd2ab240555cdff;p=emacs.git (fast-lock-cache-data): Provide 2nd arg to font-lock-compile-keywords. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4e749d12140..df9232d40e0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2006-09-16 Richard Stallman + + * obsolete/fast-lock.el (fast-lock-cache-data): Provide 2nd arg to + font-lock-compile-keywords. + + * font-lock.el (font-lock-compile-keywords): Rename optional arg + to SYNTACTIC-KEYWORDS and reverse the sense. All callers changed. + 2006-09-16 Jan Dj,Ad(Brv * 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'." ;; Compile all keywords in case some are and some aren't. (when font-lock-syntactic-keywords (setq font-lock-syntactic-keywords (font-lock-compile-keywords - font-lock-syntactic-keywords))) + font-lock-syntactic-keywords t))) (when syntactic-keywords - (setq syntactic-keywords (font-lock-compile-keywords syntactic-keywords))) + (setq syntactic-keywords (font-lock-compile-keywords syntactic-keywords t))) (setq font-lock-keywords (font-lock-compile-keywords font-lock-keywords) keywords (font-lock-compile-keywords keywords)) ;; Use the Font Lock cache SYNTACTIC-PROPERTIES and FACE-PROPERTIES if we're