Function: gnus-topic-articles-in-topic
gnus-topic-articles-in-topic is a byte-compiled function defined in
gnus-topic.el.gz.
Signature
(gnus-topic-articles-in-topic ENTRIES)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-articles-in-topic (entries)
(let ((total 0)
number)
(while entries
(when (numberp (setq number (car (pop entries))))
(incf total number)))
total))