Function: woman-bookmark-make-record
woman-bookmark-make-record is a byte-compiled function defined in
woman.el.gz.
Signature
(woman-bookmark-make-record)
Documentation
Make a bookmark entry for a Woman buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
;; FIXME: woman.el and man.el should be better integrated so, for
;; example, bookmarks of one can be used with the other.
(defun woman-bookmark-make-record ()
"Make a bookmark entry for a Woman buffer."
`(,(Man-default-bookmark-title)
,@(bookmark-make-record-default 'no-file)
(location . ,(concat "woman " woman-last-file-name))
;; Use the same form as man's bookmarks, as much as possible.
(man-args . ,woman-last-file-name)
(handler . woman-bookmark-jump)))