Function: gnus-summary-current-score

gnus-summary-current-score is an autoloaded, interactive and byte-compiled function defined in gnus-score.el.gz.

Signature

(gnus-summary-current-score ARG)

Documentation

Return the score of the current article.

With prefix ARG, return the total score of the current (sub)thread.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-score.el.gz
(defun gnus-summary-current-score (arg)
  "Return the score of the current article.
With prefix ARG, return the total score of the current (sub)thread."
  (interactive "P" gnus-article-mode gnus-summary-mode)
  (message "%s" (if arg
		    (gnus-thread-total-score
		     (gnus-id-to-thread
		      (mail-header-id (gnus-summary-article-header))))
		  (gnus-summary-article-score))))