Function: consult--fontify-region
consult--fontify-region is a byte-compiled function defined in
consult.el.
Signature
(consult--fontify-region START END)
Documentation
Ensure that region between START and END is fontified.
Source Code
;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defsubst consult--fontify-region (start end)
"Ensure that region between START and END is fontified."
(when (and consult-fontify-preserve jit-lock-mode)
(jit-lock-fontify-now start end)))