From: Richard M. Stallman Date: Tue, 18 Jan 1994 19:23:14 +0000 (+0000) Subject: (font-lock-mode): Set after-revert-hook X-Git-Tag: emacs-19.34~10226 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=87cd38d6effdfa2d06a5f6e17f4e2f701595ecdd;p=emacs.git (font-lock-mode): Set after-revert-hook to refontify after revert. --- diff --git a/lisp/font-lock.el b/lisp/font-lock.el index e1f35b179d3..9ce1ed1e8bc 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -365,14 +365,17 @@ can use \\[font-lock-fontify-buffer]." (set (make-local-variable 'font-lock-mode) on-p) (cond (on-p (font-lock-set-defaults) + (make-local-variable 'after-revert-hook) + ;;if buffer is reverted, must repeat fontification. + (setq after-revert-hook 'font-lock-fontify-buffer) (run-hooks 'font-lock-mode-hook) (or font-lock-fontified (font-lock-fontify-buffer))) (font-lock-fontified (setq font-lock-fontified nil) + (setq after-revert-hook nil) (font-lock-unfontify-region (point-min) (point-max)))) (force-mode-line-update))) - (defun font-lock-fontify-buffer () "Fontify the current buffer the way `font-lock-mode' would: