Variable: erc-dangerous-host-highlight-type
erc-dangerous-host-highlight-type is a customizable variable defined
in erc-match.el.gz.
Value
nick
Documentation
Determines how to highlight messages by nicks from dangerous-hosts.
See erc-dangerous-hosts.
The following values are allowed:
nick - highlight nick from dangerous-host only
message - highlight the entire message from dangerous-host
all - highlight the entire message (including the nick)
from dangerous-host
Any other value disables dangerous-host highlighting altogether.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-match.el.gz
(defcustom erc-dangerous-host-highlight-type 'nick
"Determines how to highlight messages by nicks from dangerous-hosts.
See `erc-dangerous-hosts'.
The following values are allowed:
`nick' - highlight nick from dangerous-host only
`message' - highlight the entire message from dangerous-host
`all' - highlight the entire message (including the nick)
from dangerous-host
Any other value disables dangerous-host highlighting altogether."
:type '(choice (const nil)
(const nick)
(const message)
(const all)))