diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-06-24 23:30:50 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-06-24 23:30:50 +0000 |
commit | e2850f3f85e84b1912f55f9980096d3b4a64519a (patch) | |
tree | b559965635963a061b2861647bb5c89e465b6069 | |
parent | 7790d5cd52f8e381942cc9274eebb5c3a0836488 (diff) | |
download | emacs-e2850f3f85e84b1912f55f9980096d3b4a64519a.tar.gz emacs-e2850f3f85e84b1912f55f9980096d3b4a64519a.tar.bz2 emacs-e2850f3f85e84b1912f55f9980096d3b4a64519a.zip |
(font-lock-set-defaults): Fix previous change.
-rw-r--r-- | lisp/font-lock.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 0abe5f3806e..033bf20bf71 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -1561,7 +1561,7 @@ Sets various variables using `font-lock-defaults' (or, if nil, using ;; Now compile the keywords. (unless (eq (car font-lock-keywords) t) (set (make-local-variable 'font-lock-keywords) - (font-lock-compile-keywords keywords t)))))) + (font-lock-compile-keywords font-lock-keywords t)))))) ;;; Colour etc. support. |