Function: rmail-summary-previous-same-subject
rmail-summary-previous-same-subject is an interactive and
byte-compiled function defined in rmailsum.el.gz.
Signature
(rmail-summary-previous-same-subject N)
Documentation
Go to the previous message in the summary having the same subject.
With prefix argument N, do this N times. If N is negative, go forwards instead.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-previous-same-subject (n)
"Go to the previous message in the summary having the same subject.
With prefix argument N, do this N times.
If N is negative, go forwards instead."
(interactive "p")
(rmail-summary-next-same-subject (- n)))