Function: bookmark-bmenu-goto-bookmark

bookmark-bmenu-goto-bookmark is a byte-compiled function defined in bookmark.el.gz.

Signature

(bookmark-bmenu-goto-bookmark NAME)

Documentation

Move point to bookmark with name NAME.

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-goto-bookmark (name)
  "Move point to bookmark with name NAME."
  (goto-char (point-min))
  (while (not (or (equal name (bookmark-bmenu-bookmark))
                  (eobp)))
    (forward-line 1))
  (forward-line 0))