Function: gnus-summary-best-unread-article

gnus-summary-best-unread-article is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-best-unread-article &optional ARG)

Documentation

Select the unread article with the highest score.

If given a prefix argument, select the next unread article that has a score higher than the default score.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-best-unread-article (&optional arg)
  "Select the unread article with the highest score.
If given a prefix argument, select the next unread article that has a
score higher than the default score."
  (interactive "P" gnus-summary-mode)
  (let ((article (if arg
		     (gnus-summary-better-unread-subject)
		   (gnus-summary-best-unread-subject))))
    (if article
	(gnus-summary-goto-article article)
      (error "No unread articles"))))