Function: Man-make-page-mode-string
Man-make-page-mode-string is a byte-compiled function defined in
man.el.gz.
Signature
(Man-make-page-mode-string)
Documentation
Formats part of the mode line for Man mode.
Source Code
;; Defined in /usr/src/emacs/lisp/man.el.gz
(defsubst Man-make-page-mode-string ()
"Formats part of the mode line for Man mode."
(format "%s page %d of %d"
(or (nth 2 (nth (1- Man-current-page) Man-page-list))
"")
Man-current-page
(length Man-page-list)))