Variable: erc-track-position-in-mode-line

erc-track-position-in-mode-line is a customizable variable defined in erc-track.el.gz.

Value

before-modes

Documentation

Where to show modified channel information in the mode-line.

Choices are: before-modes - add to the beginning of mode-line-modes,
after-modes - add to the end of mode-line-modes,
t - add to the end of global-mode-string,
nil - don't add to mode line.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-track.el.gz
(defcustom erc-track-position-in-mode-line 'before-modes
  "Where to show modified channel information in the mode-line.

Choices are:
`before-modes' - add to the beginning of `mode-line-modes',
`after-modes'  - add to the end of `mode-line-modes',
t              - add to the end of `global-mode-string',
nil            - don't add to mode line."
  :type '(choice (const :tag "Just before mode information" before-modes)
		 (const :tag "Just after mode information" after-modes)
		 (const :tag "After all other information" t)
		 (const :tag "Don't display in mode line" nil))
  :set (lambda (sym val)
	 (set sym val)
	 (when (and (boundp 'erc-track-mode)
		    erc-track-mode)
	   (erc-track-remove-from-mode-line)
	   (erc-track-add-to-mode-line val))))