From: Eli Zaretskii Date: Thu, 13 Dec 2001 07:38:25 +0000 (+0000) Subject: (font-lock-mode): Put our function at the end of after-change-functions. X-Git-Tag: emacs-21.2~237 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=12898fc2e9ee49a90b05868db2a07c9146f1b6c3;p=emacs.git (font-lock-mode): Put our function at the end of after-change-functions. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cfd701f1a71..d3adac9511a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2001-12-13 Richard M. Stallman + + * font-lock.el (font-lock-mode): + Put our function at the end of after-change-functions. + + * emacs-lisp/advice.el (ad-compile-function): + Byte compile the function under another (uninterned) name. + 2001-12-10 Eli Zaretskii * mail/smtpmail.el (smtpmail-send-queued-mail): Insert the diff --git a/lisp/font-lock.el b/lisp/font-lock.el index ef4bf6f2836..ea39a6cbae0 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -754,7 +754,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.