Function: gnus-score-followup-thread

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

Signature

(gnus-score-followup-thread &optional SCORE)

Documentation

Add SCORE to all later articles in the thread the current buffer is part of.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-score.el.gz
(defun gnus-score-followup-thread (&optional score)
  "Add SCORE to all later articles in the thread the current buffer is part of."
  (interactive "P" gnus-article-mode gnus-summary-mode)
  (setq score (gnus-score-delta-default score))
  (when (gnus-buffer-live-p gnus-summary-buffer)
    (save-excursion
      (save-restriction
	(goto-char (point-min))
	(let ((id (mail-fetch-field "message-id")))
	  (when id
	    (set-buffer gnus-summary-buffer)
	    (gnus-summary-score-entry
	     "references" id 's
	     score (current-time-string))))))))