Function: lazy-lock-defer-line-after-change

lazy-lock-defer-line-after-change is a byte-compiled function defined in lazy-lock.el.gz.

Signature

(lazy-lock-defer-line-after-change BEG END OLD-LEN)

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/lazy-lock.el.gz
(defun lazy-lock-defer-line-after-change (beg end _old-len)
  ;; Called from `after-change-functions'.
  ;; Defer fontification of the current change.  Save the current buffer so
  ;; that we subsequently fontify in all windows showing the buffer.
  (with-silent-modifications
    (unless (memq (current-buffer) lazy-lock-buffers)
      (push (current-buffer) lazy-lock-buffers))
    (remove-text-properties (max (1- beg) (point-min))
			    (min (1+ end) (point-max))
			    '(lazy-lock nil))))