From: Dmitry Gutov Date: Sat, 23 Dec 2023 20:53:35 +0000 (+0200) Subject: jit-lock-force-redisplay: Make it work X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5c3ff1494b69bf45b99125f2423174222badfa43;p=emacs.git jit-lock-force-redisplay: Make it work * lisp/jit-lock.el (jit-lock-force-redisplay): Make sure the buffer change is really performed (bug#66732). --- diff --git a/lisp/jit-lock.el b/lisp/jit-lock.el index d0522d6a791..70277545495 100644 --- a/lisp/jit-lock.el +++ b/lisp/jit-lock.el @@ -500,6 +500,7 @@ This applies to the buffer associated with marker START." (setq start (point-min) end (max start end))) ;; Don't cause refontification (it's already been done), but just do ;; some random buffer change, so as to force redisplay. + (put-text-property start end 'fontified nil) (put-text-property start end 'fontified t))))) ;;; Stealth fontification.