Function: tabulated-list-get-entry
tabulated-list-get-entry is a byte-compiled function defined in
tabulated-list.el.gz.
Signature
(tabulated-list-get-entry &optional POS)
Documentation
Return the Tabulated List entry at POS.
The value is a vector of column descriptors, or nil if there is no entry at POS. 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-entry (&optional pos)
"Return the Tabulated List entry at POS.
The value is a vector of column descriptors, or nil if there is
no entry at POS. POS, if omitted or nil, defaults to point."
(get-text-property (or pos (point)) 'tabulated-list-entry))