Function: rmail-previous-same-subject

rmail-previous-same-subject is an interactive and byte-compiled function defined in rmail.el.gz.

Signature

(rmail-previous-same-subject N)

Documentation

Go to the previous mail message having the same subject header.

With prefix argument N, do this N times. If N is negative, go forwards instead.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
(defun rmail-previous-same-subject (n)
  "Go to the previous mail message having the same subject header.
With prefix argument N, do this N times.
If N is negative, go forwards instead."
  (interactive "p")
  (rmail-next-same-subject (- n)))