Function: c-font-lock-flush

c-font-lock-flush is a macro defined in cc-defs.el.gz.

Signature

(c-font-lock-flush BEG END)

Documentation

Declare the region BEG...END's fontification as out-of-date.

On XEmacs and older Emacsen, this refontifies that region immediately.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defmacro c-font-lock-flush (beg end)
  "Declare the region BEG...END's fontification as out-of-date.
On XEmacs and older Emacsen, this refontifies that region immediately."
  (declare (debug t))
  (if (fboundp 'font-lock-flush)
      `(font-lock-flush ,beg ,end)
    `(font-lock-fontify-region ,beg ,end)))