Function: gnus-thread-total-score-1
gnus-thread-total-score-1 is a byte-compiled function defined in
gnus-sum.el.gz.
Signature
(gnus-thread-total-score-1 ROOT)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-thread-total-score-1 (root)
;; This function find the total score of the thread below ROOT.
(setq root (car root))
(apply gnus-thread-score-function
(or (append
(mapcar #'gnus-thread-total-score
(cdr (gnus-id-to-thread (mail-header-id root))))
(when (> (mail-header-number root) 0)
(list (or (cdr (assq (mail-header-number root)
gnus-newsgroup-scored))
gnus-summary-default-score 0))))
(list gnus-summary-default-score)
'(0))))