Function: font-lock-unfontify-region

font-lock-unfontify-region is a byte-compiled function defined in font-lock.el.gz.

Signature

(font-lock-unfontify-region BEG END)

Documentation

Unfontify the text between BEG and END.

This works by calling font-lock-unfontify-region-function.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/font-lock.el.gz
(defun font-lock-unfontify-region (beg end)
  "Unfontify the text between BEG and END.
This works by calling `font-lock-unfontify-region-function'."
  (with-silent-modifications
    (funcall font-lock-unfontify-region-function beg end)))