Mercurial > emacs
changeset 72934:b193d9616957
(fast-lock-cache-data): Provide 2nd arg to font-lock-compile-keywords.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 16 Sep 2006 17:54:41 +0000 |
parents | cc737d1f33f9 |
children | 59a167976c44 |
files | lisp/obsolete/fast-lock.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/obsolete/fast-lock.el Sat Sep 16 17:52:32 2006 +0000 +++ b/lisp/obsolete/fast-lock.el Sat Sep 16 17:54:41 2006 +0000 @@ -623,9 +623,9 @@ ;; 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