Function: gnus-thread-sort-by-total-score
gnus-thread-sort-by-total-score is a byte-compiled function defined in
gnus-sum.el.gz.
Signature
(gnus-thread-sort-by-total-score H1 H2)
Documentation
Sort threads by the sum of all scores in the thread.
Unscored articles will be counted as having a score of zero.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-thread-sort-by-total-score (h1 h2)
"Sort threads by the sum of all scores in the thread.
Unscored articles will be counted as having a score of zero."
(> (gnus-thread-total-score h1) (gnus-thread-total-score h2)))