Function: gnus-topic-update-topics-containing-group
gnus-topic-update-topics-containing-group is a byte-compiled function
defined in gnus-topic.el.gz.
Signature
(gnus-topic-update-topics-containing-group GROUP)
Documentation
Update all topics that have GROUP as a member.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-update-topics-containing-group (group)
"Update all topics that have GROUP as a member."
(when (and (derived-mode-p 'gnus-group-mode)
gnus-topic-mode)
(save-excursion
(let ((alist gnus-topic-alist))
;; This is probably not entirely correct. If a topic
;; isn't shown, then it's not updated. But the updating
;; should be performed in any case, since the topic's
;; parent should be updated. Pfft.
(while alist
(when (and (member group (cdar alist))
(gnus-topic-goto-topic (caar alist)))
(gnus-topic-update-topic-line (caar alist)))
(pop alist))))))