Function: jit-lock-refontify

jit-lock-refontify is a byte-compiled function defined in jit-lock.el.gz.

Signature

(jit-lock-refontify &optional BEG END)

Documentation

Force refontification of the region BEG..END (default whole buffer).

Source Code

;; Defined in /usr/src/emacs/lisp/jit-lock.el.gz
(defun jit-lock-refontify (&optional beg end)
  "Force refontification of the region BEG..END (default whole buffer)."
  (with-buffer-prepared-for-jit-lock
   (save-restriction
     (widen)
     (put-text-property (or beg (point-min)) (or end (point-max))
			'fontified nil))))