Variable: erc-text-matched-hook

erc-text-matched-hook is a customizable variable defined in erc-match.el.gz.

Value

(erc-log-matches)

Documentation

Hook run when text matches a given match-type.

Functions in this hook are passed as arguments:
(match-type nick!user@host message) where MATCH-TYPE is a symbol of:
current-nick, keyword, pal, dangerous-host, fool.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-match.el.gz
(defcustom erc-text-matched-hook '(erc-log-matches)
  "Hook run when text matches a given match-type.
Functions in this hook are passed as arguments:
\(match-type nick!user@host message) where MATCH-TYPE is a symbol of:
current-nick, keyword, pal, dangerous-host, fool."
  :options '(erc-log-matches erc-hide-fools erc-beep-on-match)
  :type 'hook)