Function: hbut:to
hbut:to is a byte-compiled function defined in hbut.el.
Signature
(hbut:to LBL-KEY)
Documentation
Find the nearest explicit button or labeled/named implicit button.
Button given by LBL-KEY (a label or label key) and within the visible portion of the current buffer. Leave point inside the button label. Return the symbol for the button, else nil.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun hbut:to (lbl-key)
"Find the nearest explicit button or labeled/named implicit button.
Button given by LBL-KEY (a label or label key) and within the
visible portion of the current buffer. Leave point inside the
button label. Return the symbol for the button, else nil."
(or (ebut:to lbl-key) (ibut:to lbl-key)))