Function: Man-next-manpage

Man-next-manpage is an interactive and byte-compiled function defined in man.el.gz.

Signature

(Man-next-manpage)

Documentation

Find the next manpage entry in the buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/man.el.gz
(defun Man-next-manpage ()
  "Find the next manpage entry in the buffer."
  (interactive nil man-common)
  (if (= (length Man-page-list) 1)
      (error "This is the only manpage in the buffer"))
  (if (< Man-current-page (length Man-page-list))
      (Man-goto-page (1+ Man-current-page))
    (if Man-circular-pages-flag
	(Man-goto-page 1)
      (error "You're looking at the last manpage in the buffer"))))