--- gnus-cache.el.orig Thu Oct 11 11:29:32 2001 +++ gnus-cache.el Thu Oct 11 11:31:45 2001 @@ -370,8 +370,16 @@ (while cached (gnus-summary-goto-subject (pop cached) t)))) -(defalias 'gnus-summary-limit-include-cached - 'gnus-summary-insert-cached-articles) +(defun gnus-summary-limit-include-cached () + "Limit the summary buffer to articles that are cached." + (interactive) + (let ((cached (sort (copy-sequence gnus-newsgroup-cached) '>)) + (gnus-verbose (max 6 gnus-verbose))) + (if cached + (progn + (gnus-summary-limit cached) + (gnus-summary-position-point)) + (gnus-message 3 "No cached articles for this group")))) ;;; Internal functions.