Variable: erc-button-mode-hook

erc-button-mode-hook is a customizable variable defined in erc-button.el.gz.

Value

nil

Documentation

Hook run after entering or leaving erc-button-mode(var)/erc-button-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-button.el.gz
;;;###autoload(autoload 'erc-button-mode "erc-button" nil t)
(define-erc-module button nil
  "This mode buttonizes all messages according to `erc-button-alist'."
  ((add-hook 'erc-insert-modify-hook #'erc-button-add-buttons 'append)
   (add-hook 'erc-send-modify-hook #'erc-button-add-buttons 'append)
   (add-hook 'erc-complete-functions #'erc-button-next-function)
   (add-hook 'erc-mode-hook #'erc-button-setup))
  ((remove-hook 'erc-insert-modify-hook #'erc-button-add-buttons)
   (remove-hook 'erc-send-modify-hook #'erc-button-add-buttons)
   (remove-hook 'erc-complete-functions #'erc-button-next-function)
   (remove-hook 'erc-mode-hook #'erc-button-setup)))