Function: gbut:get
gbut:get is a byte-compiled function defined in hbut.el.
Signature
(gbut:get &optional LBL-KEY)
Documentation
Return global button symbol given by optional LBL-KEY if found in (gbut:file).
Retrieve any button data, convert into a button object and return a symbol which references the button.
All arguments are optional. When none are given, return a symbol for the button that point is within.
Return nil if no matching button is found.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun gbut:get (&optional lbl-key)
"Return global button symbol given by optional LBL-KEY if found in (gbut:file).
Retrieve any button data, convert into a button object and return a symbol
which references the button.
All arguments are optional. When none are given, return a symbol for
the button that point is within.
Return nil if no matching button is found."
(hbut:get lbl-key nil (gbut:file)))