Function: gnus-summary-next-thread

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

Signature

(gnus-summary-next-thread N &optional SILENT)

Documentation

Go to the same level next N'th thread.

If N is negative, search backward instead. Returns the difference between N and the number of skips actually done.

If SILENT, don't output messages.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-next-thread (n &optional silent)
  "Go to the same level next N'th thread.
If N is negative, search backward instead.
Returns the difference between N and the number of skips actually
done.

If SILENT, don't output messages."
  (interactive "p" gnus-summary-mode)
  (let ((backward (< n 0))
	(n (abs n)))
    (while (and (> n 0)
		(gnus-summary-go-to-next-thread backward))
      (decf n))
    (unless silent
      (gnus-summary-position-point))
    (when (and (not silent) (/= 0 n))
      (gnus-message 7 "No more threads"))
    n))