Function: bookmark-name-from-full-record

bookmark-name-from-full-record is a byte-compiled function defined in bookmark.el.gz.

Signature

(bookmark-name-from-full-record BOOKMARK-RECORD)

Documentation

Return the name of BOOKMARK-RECORD.

BOOKMARK-RECORD is, e.g., one element from bookmark-alist.

Source Code

;; Defined in /usr/src/emacs/lisp/bookmark.el.gz
;; Only functions below, in this page and the next one (file formats),
;; need to know anything about the format of bookmark-alist entries.
;; Everyone else should go through them.

(defun bookmark-name-from-full-record (bookmark-record)
  "Return the name of BOOKMARK-RECORD.
BOOKMARK-RECORD is, e.g., one element from `bookmark-alist'."
  (car bookmark-record))