Function: gnus-thread-total-score
gnus-thread-total-score is a byte-compiled function defined in
gnus-sum.el.gz.
Signature
(gnus-thread-total-score THREAD)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-thread-total-score (thread)
;; This function find the total score of THREAD.
(cond
((null thread)
0)
((consp thread)
(if (stringp (car thread))
(apply gnus-thread-score-function 0
(mapcar #'gnus-thread-total-score-1 (cdr thread)))
(gnus-thread-total-score-1 thread)))
(t
(gnus-thread-total-score-1 (list thread)))))