Function: Man-previous-manpage

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

Signature

(Man-previous-manpage)

Documentation

Find the previous manpage entry in the buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/man.el.gz
(defun Man-previous-manpage ()
  "Find the previous 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 1)
      (Man-goto-page (1- Man-current-page))
    (if Man-circular-pages-flag
	(Man-goto-page (length Man-page-list))
      (error "You're looking at the first manpage in the buffer"))))