Function: hbdata:get-entry
hbdata:get-entry is a byte-compiled function defined in hbdata.el.
Signature
(hbdata:get-entry LBL-KEY KEY-SRC &optional DIRECTORY)
Documentation
Return button data entry given by LBL-KEY, KEY-SRC and optional DIRECTORY.
Return nil if no matching entry is found.
A button data entry is a list of attribute values. Use methods from
class hbdata to operate on the entry.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbdata.el
(defun hbdata:get-entry (lbl-key key-src &optional directory)
"Return button data entry given by LBL-KEY, KEY-SRC and optional DIRECTORY.
Return nil if no matching entry is found.
A button data entry is a list of attribute values. Use methods from
class `hbdata' to operate on the entry."
(hbdata:apply-entry
(lambda () (read (current-buffer)))
lbl-key key-src directory))