Function: bookmark-bmenu-bookmark

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

Signature

(bookmark-bmenu-bookmark)

Documentation

Return the bookmark for this line in an interactive bookmark list buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-bmenu-bookmark ()
  "Return the bookmark for this line in an interactive bookmark list buffer."
  (bookmark-bmenu-ensure-position)
  (let* ((id (tabulated-list-get-id))
         (entry (and id (assoc id tabulated-list-entries))))
    (if entry
        (caar entry)
      "")))