Function: gnus-summary-limit-include-cached
gnus-summary-limit-include-cached is an autoloaded, interactive and
byte-compiled function defined in gnus-cache.el.gz.
Signature
(gnus-summary-limit-include-cached)
Documentation
Limit the summary buffer to articles that are cached.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-cache.el.gz
(defun gnus-summary-limit-include-cached ()
"Limit the summary buffer to articles that are cached."
(interactive nil gnus-summary-mode)
(let ((gnus-verbose (max 6 gnus-verbose)))
(if gnus-newsgroup-cached
(progn
(gnus-summary-limit gnus-newsgroup-cached)
(gnus-summary-position-point))
(gnus-message 3 "No cached articles for this group"))))