Function: Man-previous-section
Man-previous-section is an interactive and byte-compiled function
defined in man.el.gz.
Signature
(Man-previous-section N)
Documentation
Move point to Nth previous section (default 1).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/man.el.gz
(defun Man-previous-section (n)
"Move point to Nth previous section (default 1)."
(interactive "p" man-common)
(let ((case-fold-search nil))
(if (looking-at Man-heading-regexp)
(forward-line -1))
(if (re-search-backward Man-heading-regexp (point-min) t n)
(beginning-of-line)
(goto-char (point-min)))))