Function: gnus-topic-catchup-articles
gnus-topic-catchup-articles is an interactive and byte-compiled
function defined in gnus-topic.el.gz.
Signature
(gnus-topic-catchup-articles TOPIC)
Documentation
Catchup this topic or group.
Also see gnus-group-catchup.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-catchup-articles (topic)
"Catchup this topic or group.
Also see `gnus-group-catchup'."
(interactive (list (gnus-group-topic-name)) gnus-topic-mode)
(if (not topic)
(call-interactively 'gnus-group-catchup-current)
(save-excursion
(let* ((groups
(mapcar (lambda (entry) (car (nth 1 entry)))
(gnus-topic-find-groups topic gnus-level-killed t
nil t)))
(inhibit-read-only t)
(gnus-group-marked groups))
(gnus-group-catchup-current)
(mapcar #'gnus-topic-update-topics-containing-group groups)))))