Function: Man-bookmark-make-record

Man-bookmark-make-record is a byte-compiled function defined in man.el.gz.

Signature

(Man-bookmark-make-record)

Documentation

Make a bookmark entry for a Man buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/man.el.gz
(defun Man-bookmark-make-record ()
  "Make a bookmark entry for a Man buffer."
  `(,(Man-default-bookmark-title)
    ,@(bookmark-make-record-default 'no-file)
    (location . ,(concat "man " Man-arguments))
    (man-args . ,Man-arguments)
    (handler . Man-bookmark-jump)))