Function: compilation--flush-parse

compilation--flush-parse is a byte-compiled function defined in compile.el.gz.

Signature

(compilation--flush-parse START END)

Documentation

Mark the region between START and END for re-parsing.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
(defun compilation--flush-parse (start _end)
  "Mark the region between START and END for re-parsing."
  (if (markerp compilation--parsed)
      (move-marker compilation--parsed (min start compilation--parsed))))