Function: gnus-score-update-all-lines
gnus-score-update-all-lines is a byte-compiled function defined in
gnus-score.el.gz.
Signature
(gnus-score-update-all-lines)
Documentation
Update all lines in the summary buffer, even the hidden ones.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-score.el.gz
(defun gnus-score-update-all-lines ()
"Update all lines in the summary buffer, even the hidden ones."
(save-excursion
(goto-char (point-min))
(let (hidden)
(while (not (eobp))
(when (gnus-summary-show-thread)
(push (point) hidden))
(gnus-summary-update-line)
(forward-line 1))
;; Re-hide the hidden threads.
(while hidden
(goto-char (pop hidden))
(gnus-summary-hide-thread)))))