Variable: erc-querypoll-exclude-regexp
erc-querypoll-exclude-regexp is a customizable variable defined in
erc-notify.el.gz.
Value
"\\`\\(?:\\*.+\\|[A-Za-z]+Serv\\)\\'"
Documentation
Pattern to skip polling for bots and services you regularly query.
This variable was added, or its default value changed, in ERC version
5.6.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-notify.el.gz
(defcustom erc-querypoll-exclude-regexp
(rx bot (or (: "*" (+ nonl)) (: (+ (in "A-Za-z")) "Serv")) eot)
"Pattern to skip polling for bots and services you regularly query."
:group 'erc
:package-version '(ERC . "5.6")
:type 'regexp)