Function: gnus-summary-kill-same-subject
gnus-summary-kill-same-subject is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-kill-same-subject &optional UNMARK)
Documentation
Mark articles which has the same subject as read.
If UNMARK is positive, remove any kind of mark. If UNMARK is negative, tick articles.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-kill-same-subject (&optional unmark)
"Mark articles which has the same subject as read.
If UNMARK is positive, remove any kind of mark.
If UNMARK is negative, tick articles."
(interactive "P" gnus-summary-mode)
(when unmark
(setq unmark (prefix-numeric-value unmark)))
(let ((count
(gnus-summary-mark-same-subject
(gnus-summary-article-subject) unmark)))
;; If marked as read, go to next unread subject.
(when (null unmark)
;; Go to next unread subject.
(gnus-summary-next-subject 1 t))
(gnus-message 7 "%d articles are marked as %s"
count (if unmark "unread" "read"))))