Function: Man-default-bookmark-title
Man-default-bookmark-title is a byte-compiled function defined in
man.el.gz.
Signature
(Man-default-bookmark-title)
Documentation
Default bookmark name for Man or WoMan pages.
Uses Man-name-local-regexp.
Source Code
;; Defined in /usr/src/emacs/lisp/man.el.gz
(defun Man-default-bookmark-title ()
"Default bookmark name for Man or WoMan pages.
Uses `Man-name-local-regexp'."
(save-excursion
(goto-char (point-min))
(when (re-search-forward Man-name-local-regexp nil t)
(skip-chars-forward "\n\t ")
(buffer-substring-no-properties (point) (line-end-position)))))