Function: gnus-summary-prev-thread
gnus-summary-prev-thread is an interactive and byte-compiled function
defined in gnus-sum.el.gz.
Signature
(gnus-summary-prev-thread N)
Documentation
Go to the same level previous N'th thread.
Returns the difference between N and the number of skips actually done.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-prev-thread (n)
"Go to the same level previous N'th thread.
Returns the difference between N and the number of skips actually
done."
(interactive "p" gnus-summary-mode)
(gnus-summary-next-thread (- n)))