Variable: erc-beep-match-types

erc-beep-match-types is a customizable variable defined in erc-match.el.gz.

Value

(current-nick)

Documentation

Types of matches to beep for when a match occurs.

The function erc-beep-on-match needs to be added to erc-text-matched-hook for beeping to work.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-match.el.gz
(defcustom erc-beep-match-types '(current-nick)
  "Types of matches to beep for when a match occurs.
The function `erc-beep-on-match' needs to be added to `erc-text-matched-hook'
for beeping to work."
  :type '(choice (repeat :tag "Beep on match" (choice
					       (const current-nick)
					       (const keyword)
					       (const pal)
					       (const dangerous-host)
					       (const fool)))
		 (const :tag "Don't beep" nil)))