Function: gnus-async-prefetch-remove-group

gnus-async-prefetch-remove-group is an autoloaded and byte-compiled function defined in gnus-async.el.gz.

Signature

(gnus-async-prefetch-remove-group GROUP)

Documentation

Remove all articles belonging to GROUP from the prefetch buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-async.el.gz
(defun gnus-async-prefetch-remove-group (group)
  "Remove all articles belonging to GROUP from the prefetch buffer."
  (when (and (gnus-group-asynchronous-p group)
	     (memq 'exit gnus-prefetched-article-deletion-strategy))
    (save-excursion
      (gnus-async-set-buffer)
      (dolist (entry gnus-async-article-alist)
	(when (equal group (nth 3 entry))
	  (gnus-async-delete-prefetched-entry entry))))))