Function: gnus-article-sort-by-score

gnus-article-sort-by-score is a byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-article-sort-by-score H1 H2)

Documentation

Sort articles by root article score.

Unscored articles will be counted as having a score of zero.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defsubst gnus-article-sort-by-score (h1 h2)
  "Sort articles by root article score.
Unscored articles will be counted as having a score of zero."
  (> (or (cdr (assq (mail-header-number h1)
		    gnus-newsgroup-scored))
	 gnus-summary-default-score 0)
     (or (cdr (assq (mail-header-number h2)
		    gnus-newsgroup-scored))
	 gnus-summary-default-score 0)))