Function: gnus-summary-prev-subject

gnus-summary-prev-subject is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-prev-subject N &optional UNREAD)

Documentation

Go to previous N'th summary line.

If optional argument UNREAD is non-nil, only unread article is selected.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-prev-subject (n &optional unread)
  "Go to previous N'th summary line.
If optional argument UNREAD is non-nil, only unread article is selected."
  (interactive "p" gnus-summary-mode)
  (gnus-summary-next-subject (- n) unread))