Variable: gnus-summary-display-while-building
gnus-summary-display-while-building is a customizable variable defined
in gnus-sum.el.gz.
Value
nil
Documentation
If non-nil, show and update the summary buffer as it's being built.
If the value is t, update the buffer after every line is inserted. If the value is an integer (N), update the display every N lines.
This variable was added, or its default value changed, in Emacs 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defcustom gnus-summary-display-while-building nil
"If non-nil, show and update the summary buffer as it's being built.
If the value is t, update the buffer after every line is inserted. If
the value is an integer (N), update the display every N lines."
:version "22.1"
:group 'gnus-thread
:type '(choice (const :tag "off" nil)
number
(const :tag "frequently" t)))