Function: gnus-summary-up-thread

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

Signature

(gnus-summary-up-thread N)

Documentation

Go up thread N steps.

If N is negative, go down instead. Returns the difference between N and how many steps down that were taken.

Probably introduced at or before Emacs version 29.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-up-thread (n)
  "Go up thread N steps.
If N is negative, go down instead.
Returns the difference between N and how many steps down that were
taken."
  (interactive "p" gnus-summary-mode)
  (gnus-summary-down-thread (- n)))