Function: hui:hbut-current-act
hui:hbut-current-act is an interactive and byte-compiled function
defined in hui.el.
Signature
(hui:hbut-current-act)
Documentation
Activate Hyperbole button at point or signal an error if there is none.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui.el
(defun hui:hbut-current-act ()
"Activate Hyperbole button at point or signal an error if there is none."
(interactive)
(let ((but (hbut:at-p)))
(cond ((null but)
(hypb:error "(hbut-act): No current button to activate"))
((not (hbut:is-p but))
(hypb:error "(hbut-act): Button is invalid ; it has no attributes"))
(t (hui:but-flash) (hbut:act but)))))