Variable: erc-header-line-format
erc-header-line-format is a customizable variable defined in
erc.el.gz.
Value
"%n on %t (%m,%l) %o"
Documentation
A string to be formatted and shown in the header-line in erc-mode.
Set this to nil if you do not want the header line to be displayed.
See erc-mode-line-format for which characters are can be used.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defcustom erc-header-line-format "%n on %t (%m,%l) %o"
"A string to be formatted and shown in the header-line in `erc-mode'.
Set this to nil if you do not want the header line to be
displayed.
See `erc-mode-line-format' for which characters are can be used."
:group 'erc-mode-line-and-header
:set (lambda (sym val)
(set sym val)
(when (fboundp 'erc-update-mode-line)
(erc-update-mode-line nil)))
:type '(choice (const :tag "Disabled" nil)
string))