Function: rmail-summary-sort-by-lines

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

Signature

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

Documentation

Sort messages of current Rmail summary by the number of lines.

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-lines (reverse)
  "Sort messages of current Rmail summary by the number of lines.
If prefix argument REVERSE is non-nil, sorts in reverse order."
  (interactive "P")
  (rmail-sort-from-summary (function rmail-sort-by-lines) reverse))