Variable: erc-track-when-inactive
erc-track-when-inactive is a customizable variable defined in
erc-track.el.gz.
Value
nil
Documentation
Enable channel tracking even for visible buffers, if you are inactive.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-track.el.gz
;; FIXME move this above the module definition.
(defcustom erc-track-when-inactive nil
"Enable channel tracking even for visible buffers, if you are inactive."
:type 'boolean
:set (lambda (sym val)
(if erc-track-mode
(progn
(erc-track-disable)
(set sym val)
(erc-track-enable))
(set sym val))))