Variable: erc-insert-modify-hook
erc-insert-modify-hook is a customizable variable defined in
erc.el.gz.
Value
nil
Documentation
Insertion hook for functions that will change the text's appearance.
This hook is called just after erc-insert-pre-hook when the value
of erc-insert-this is t.
ERC runs this hook with the buffer narrowed to the bounds of the
inserted message plus a trailing newline. Built-in modules place
their hook members in two depth ranges: the first between -80 and
-20 and the second between 20 and 80. Use the functions
erc-find-parsed-property and erc-get-parsed-vector to locate
and extract the erc-response object for the inserted message.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defcustom erc-insert-modify-hook ()
"Insertion hook for functions that will change the text's appearance.
This hook is called just after `erc-insert-pre-hook' when the value
of `erc-insert-this' is t.
ERC runs this hook with the buffer narrowed to the bounds of the
inserted message plus a trailing newline. Built-in modules place
their hook members in two depth ranges: the first between -80 and
-20 and the second between 20 and 80. Use the functions
`erc-find-parsed-property' and `erc-get-parsed-vector' to locate
and extract the `erc-response' object for the inserted message."
:group 'erc-hooks
:type 'hook)