Variable: erc-fool-highlight-type

erc-fool-highlight-type is a customizable variable defined in erc-match.el.gz.

Value

nick

Documentation

Determines how to highlight messages by fools.

See erc-fools.

The following values are allowed:

    nil - do not highlight the message at all
    nick - highlight fool's nickname only
    message - highlight the entire message from fool
    all - highlight the entire message (including the nick)
                from fool

Any other value disables fool highlighting altogether.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-match.el.gz
(defcustom erc-fool-highlight-type 'nick
  "Determines how to highlight messages by fools.
See `erc-fools'.

The following values are allowed:

    nil       - do not highlight the message at all
    `nick'    - highlight fool's nickname only
    `message' - highlight the entire message from fool
    `all'     - highlight the entire message (including the nick)
                from fool

Any other value disables fool highlighting altogether."
  :type '(choice (const nil)
		 (const nick)
                 (const message)
		 (const all)))