Function: erc-update-mode-line
erc-update-mode-line is a byte-compiled function defined in erc.el.gz.
Signature
(erc-update-mode-line &optional BUFFER)
Documentation
Update the mode line in BUFFER.
If BUFFER is nil, update the mode line in all ERC buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-update-mode-line (&optional buffer)
"Update the mode line in BUFFER.
If BUFFER is nil, update the mode line in all ERC buffers."
(if (and buffer (bufferp buffer))
(erc-update-mode-line-buffer buffer)
(dolist (buf (erc-buffer-list))
(when (buffer-live-p buf)
(erc-update-mode-line-buffer buf)))))