Function: gnus-topic-get-new-news-this-topic
gnus-topic-get-new-news-this-topic is an interactive and byte-compiled
function defined in gnus-topic.el.gz.
Signature
(gnus-topic-get-new-news-this-topic &optional N)
Documentation
Check for new news in the current topic.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-get-new-news-this-topic (&optional n)
"Check for new news in the current topic."
(interactive "P" gnus-topic-mode)
(if (not (gnus-group-topic-p))
(gnus-group-get-new-news-this-group n)
(let* ((topic (gnus-group-topic-name))
(data (cadr (gnus-topic-find-topology topic))))
(save-excursion
(gnus-topic-mark-topic topic nil (and n t))
(gnus-group-get-new-news-this-group))
(gnus-topic-remove-topic (eq 'visible (cadr data))))))