Function: mh-delete-subject-or-thread
mh-delete-subject-or-thread is an autoloaded, interactive and
byte-compiled function defined in mh-limit.el.gz.
Signature
(mh-delete-subject-or-thread)
Documentation
Delete messages with same subject or thread.
To delete messages faster, you can use this command to delete all
the messages with the same subject as the current message. This
command puts these messages in a sequence named "subject". You
can undo this action by using u (mh-undo) with a prefix argument
and then specifying the "subject" sequence.
However, if the buffer is displaying a threaded view of the
folder then this command behaves like T d (mh-thread-delete).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-limit.el.gz
;;;###mh-autoload
(defun mh-delete-subject-or-thread ()
"Delete messages with same subject or thread\\<mh-folder-mode-map>.
To delete messages faster, you can use this command to delete all
the messages with the same subject as the current message. This
command puts these messages in a sequence named \"subject\". You
can undo this action by using \\[mh-undo] with a prefix argument
and then specifying the \"subject\" sequence.
However, if the buffer is displaying a threaded view of the
folder then this command behaves like \\[mh-thread-delete]."
(interactive)
(if (memq 'unthread mh-view-ops)
(mh-thread-delete)
(mh-delete-subject)))