Function: gnus-summary-insert-cached-articles
gnus-summary-insert-cached-articles is an autoloaded, interactive and
byte-compiled function defined in gnus-cache.el.gz.
Signature
(gnus-summary-insert-cached-articles)
Documentation
Insert all the articles cached for this group into the current buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-cache.el.gz
(defun gnus-summary-insert-cached-articles ()
"Insert all the articles cached for this group into the current buffer."
(interactive nil gnus-summary-mode)
(let ((gnus-verbose (max 6 gnus-verbose)))
(cond
((not gnus-newsgroup-cached)
(gnus-message 3 "No cached articles for this group"))
;; This is faster if there are few articles to insert.
((< (length gnus-newsgroup-cached) 20)
(gnus-summary-goto-subjects gnus-newsgroup-cached))
(t
(gnus-summary-include-articles gnus-newsgroup-cached)))))