summaryrefslogtreecommitdiff
path: root/lisp/obsolete
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-09-16 17:55:13 +0000
committerRichard M. Stallman <rms@gnu.org>2006-09-16 17:55:13 +0000
commit9af0a0b9c876bbbcc33401022dd2ab240555cdff (patch)
tree92458b8928088cfcecbee0da12fd41a507c45938 /lisp/obsolete
parent533047c2e524edbe71de421312692fcbcb9d1fea (diff)
downloademacs-9af0a0b9c876bbbcc33401022dd2ab240555cdff.tar.gz
(fast-lock-cache-data): Provide 2nd arg to font-lock-compile-keywords.
Diffstat (limited to 'lisp/obsolete')
-rw-r--r--lisp/obsolete/fast-lock.el4
1 files changed, 2 insertions, 2 deletions
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