Function: rmail-summary-sort-by-subject
rmail-summary-sort-by-subject is an interactive and byte-compiled
function defined in rmailsum.el.gz.
Signature
(rmail-summary-sort-by-subject REVERSE)
Documentation
Sort messages of current Rmail summary by "Subject" header.
Ignores any "Re: " prefix. If prefix argument REVERSE is non-nil, sorts in reverse order.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-sort-by-subject (reverse)
"Sort messages of current Rmail summary by \"Subject\" header.
Ignores any \"Re: \" prefix. If prefix argument REVERSE is
non-nil, sorts in reverse order."
(interactive "P")
(rmail-sort-from-summary (function rmail-sort-by-subject) reverse))