Function: rmail-summary-sort-by-date

rmail-summary-sort-by-date is an interactive and byte-compiled function defined in rmailsum.el.gz.

Signature

(rmail-summary-sort-by-date REVERSE)

Documentation

Sort messages of current Rmail summary by "Date" header.

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
;; Sorting messages in Rmail Summary buffer.

(defun rmail-summary-sort-by-date (reverse)
  "Sort messages of current Rmail summary by \"Date\" header.
If prefix argument REVERSE is non-nil, sorts in reverse order."
  (interactive "P")
  (rmail-sort-from-summary (function rmail-sort-by-date) reverse))