Variable: erc-notice-highlight-type
erc-notice-highlight-type is a customizable variable defined in
erc.el.gz.
Value
all
Documentation
Determines how to highlight notices.
See erc-notice-prefix.
The following values are allowed:
prefix - highlight notice prefix only
all - highlight the entire notice
Any other value disables notice's highlighting altogether.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defcustom erc-notice-highlight-type 'all
"Determines how to highlight notices.
See `erc-notice-prefix'.
The following values are allowed:
`prefix' - highlight notice prefix only
`all' - highlight the entire notice
Any other value disables notice's highlighting altogether."
:group 'erc-display
:type '(choice (const :tag "highlight notice prefix only" prefix)
(const :tag "highlight the entire notice" all)
(const :tag "don't highlight notices at all" nil)))