Variable: compilation-filter-hook
compilation-filter-hook is a variable defined in compile.el.gz.
Value
nil
Documentation
Hook run after compilation-filter has inserted a string into the buffer.
It is called with the variable compilation-filter-start bound
to the position of the start of the inserted text, and point at
its end.
If Emacs lacks asynchronous process support, this hook is run
after call-process inserts the grep output into the buffer.
Probably introduced at or before Emacs version 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
(defvar compilation-filter-hook nil
"Hook run after `compilation-filter' has inserted a string into the buffer.
It is called with the variable `compilation-filter-start' bound
to the position of the start of the inserted text, and point at
its end.
If Emacs lacks asynchronous process support, this hook is run
after `call-process' inserts the grep output into the buffer.")