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. While this hook is run, narrowing is in effect and current-buffer is the buffer where the text got inserted. One possible value to add here is erc-fill.

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.
While this hook is run, narrowing is in effect and `current-buffer' is
the buffer where the text got inserted.  One possible value to add here
is `erc-fill'."
  :group 'erc-hooks
  :type 'hook)