Variable: erc-irccontrols-mode-hook
erc-irccontrols-mode-hook is a customizable variable defined in
erc-goodies.el.gz.
Value
nil
Documentation
Hook run after entering or leaving erc-irccontrols-mode(var)/erc-irccontrols-mode(fun).
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-goodies.el.gz
(define-erc-module irccontrols nil
"This mode enables the interpretation of IRC control chars."
((add-hook 'erc-insert-modify-hook #'erc-controls-highlight)
(add-hook 'erc-send-modify-hook #'erc-controls-highlight))
((remove-hook 'erc-insert-modify-hook #'erc-controls-highlight)
(remove-hook 'erc-send-modify-hook #'erc-controls-highlight)))