Variable: erc-interpret-controls-p
erc-interpret-controls-p is a customizable variable defined in
erc-goodies.el.gz.
Value
t
Documentation
If non-nil, display IRC colors and other highlighting effects.
If this is set to the symbol remove, ERC removes all IRC colors and
highlighting effects. When this variable is non-nil, it can cause Emacs to run
slowly on systems lacking sufficient CPU speed. In chatty channels, or in an
emergency (message flood) it can be turned off to save processing time. See
erc-toggle-interpret-controls.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-goodies.el.gz
(defcustom erc-interpret-controls-p t
"If non-nil, display IRC colors and other highlighting effects.
If this is set to the symbol `remove', ERC removes all IRC colors and
highlighting effects. When this variable is non-nil, it can cause Emacs to run
slowly on systems lacking sufficient CPU speed. In chatty channels, or in an
emergency (message flood) it can be turned off to save processing time. See
`erc-toggle-interpret-controls'."
:type '(choice (const :tag "Highlight control characters" t)
(const :tag "Remove control characters" remove)
(const :tag "Display raw control characters" nil)))