diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-12-11 06:05:12 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-12-11 06:05:12 +0000 |
commit | 9dd481237a5637687a9b2a5188c3cf88661f32cb (patch) | |
tree | 39fbea0210b19fe2afd7eda1594dd8924066c66c /lisp | |
parent | ff4968b67897c3dda5bcbb01b5d0558c9422c6f2 (diff) | |
download | emacs-9dd481237a5637687a9b2a5188c3cf88661f32cb.tar.gz |
(font-lock-mode): Put our function at the end of after-change-functions.
Diffstat (limited to 'lisp')
-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 7019c57151c..03aee2ae847 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -755,7 +755,7 @@ buffer local value for `font-lock-defaults', via its mode hook." ;; Turn on Font Lock mode. (when font-lock-mode - (add-hook 'after-change-functions 'font-lock-after-change-function nil t) + (add-hook 'after-change-functions 'font-lock-after-change-function t t) (font-lock-set-defaults) (font-lock-turn-on-thing-lock) ;; Fontify the buffer if we have to. |