Function: rmail-summary-sort-by-labels
rmail-summary-sort-by-labels is an interactive and byte-compiled
function defined in rmailsum.el.gz.
Signature
(rmail-summary-sort-by-labels REVERSE LABELS)
Documentation
Sort messages of current Rmail summary by labels.
LABELS is a comma-separated list of labels. 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-labels (reverse labels)
"Sort messages of current Rmail summary by labels.
LABELS is a comma-separated list of labels.
If prefix argument REVERSE is non-nil, sorts in reverse order."
(interactive "P\nsSort by labels: ")
(rmail-sort-from-summary
(lambda (reverse) (rmail-sort-by-labels reverse labels))
reverse))