Function: bookmark-get-position

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

Signature

(bookmark-get-position BOOKMARK-NAME-OR-RECORD)

Documentation

Return the position (i.e.: point) of BOOKMARK-NAME-OR-RECORD, or nil if none.

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
(defun bookmark-get-position (bookmark-name-or-record)
  "Return the position (i.e.: point) of BOOKMARK-NAME-OR-RECORD, or nil if none."
  (bookmark-prop-get bookmark-name-or-record 'position))