Function: help-bookmark-jump
help-bookmark-jump is an autoloaded and byte-compiled function defined
in help-mode.el.gz.
Signature
(help-bookmark-jump BOOKMARK)
Documentation
Jump to help-mode bookmark BOOKMARK.
Handler function for record returned by help-bookmark-make-record.
BOOKMARK is a bookmark name or a bookmark record.
Source Code
;; Defined in /usr/src/emacs/lisp/help-mode.el.gz
;;;###autoload
(defun help-bookmark-jump (bookmark)
"Jump to `help-mode' bookmark BOOKMARK.
Handler function for record returned by `help-bookmark-make-record'.
BOOKMARK is a bookmark name or a bookmark record."
(let ((help-fn (bookmark-prop-get bookmark 'help-fn))
(help-args (bookmark-prop-get bookmark 'help-args))
(position (bookmark-prop-get bookmark 'position)))
(apply help-fn help-args)
(pop-to-buffer "*Help*")
(goto-char position)))