Function: lazy-lock-fontify-rest-after-change
lazy-lock-fontify-rest-after-change is a byte-compiled function
defined in lazy-lock.el.gz.
Signature
(lazy-lock-fontify-rest-after-change BEG END OLD-LEN)
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/lazy-lock.el.gz
(defun lazy-lock-fontify-rest-after-change (beg end old-len)
;; Called from `after-change-functions'.
;; Fontify the current change and defer fontification of the rest of the
;; buffer. Save the current buffer so that we subsequently fontify in all
;; windows showing the buffer.
(lazy-lock-fontify-line-after-change beg end old-len)
(with-silent-modifications
(unless (memq (current-buffer) lazy-lock-buffers)
(push (current-buffer) lazy-lock-buffers))
(save-restriction
(widen)
(remove-text-properties end (point-max) '(lazy-lock nil)))))