Variable: gnus-updated-mode-lines

gnus-updated-mode-lines is a customizable variable defined in gnus.el.gz.

Value

(group article summary tree)

Documentation

List of buffers that should update their mode lines.

The list may contain the symbols group, article, tree and summary. If the corresponding symbol is present, Gnus will keep that mode line updated with information that may be pertinent. If this variable is nil, screen refresh may be quicker.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defcustom gnus-updated-mode-lines '(group article summary tree)
  "List of buffers that should update their mode lines.
The list may contain the symbols `group', `article', `tree' and
`summary'.  If the corresponding symbol is present, Gnus will keep
that mode line updated with information that may be pertinent.
If this variable is nil, screen refresh may be quicker."
  :group 'gnus-various
  :type '(set (const group)
	      (const article)
	      (const summary)
	      (const tree)))