Function: tabulated-list-get-id

tabulated-list-get-id is a byte-compiled function defined in tabulated-list.el.gz.

Signature

(tabulated-list-get-id &optional POS)

Documentation

Return the entry ID of the Tabulated List entry at POS.

The value is an ID object from tabulated-list-entries, or nil. POS, if omitted or nil, defaults to point.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/tabulated-list.el.gz
(defsubst tabulated-list-get-id (&optional pos)
  "Return the entry ID of the Tabulated List entry at POS.
The value is an ID object from `tabulated-list-entries', or nil.
POS, if omitted or nil, defaults to point."
  (get-text-property (or pos (point)) 'tabulated-list-id))