Function: hui:ebut-act
hui:ebut-act is an interactive and byte-compiled function defined in
hui.el.
Signature
(hui:ebut-act &optional BUT)
Documentation
Activate optional explicit button symbol BUT in current buffer.
Default is the current button.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui.el
(defun hui:ebut-act (&optional but)
"Activate optional explicit button symbol BUT in current buffer.
Default is the current button."
(interactive
(let ((but (ebut:at-p)) (lst))
(list
(cond (but)
((setq lst (ebut:alist))
(ebut:get (ebut:label-to-key
(hargs:read-match "Activate explicit button: " lst nil t
(ebut:label-p 'as-label) 'ebut))))
(t
(hypb:error "(ebut-act): No explicit buttons in buffer"))))))
(hui:hbut-operate #'hbut:act "Activate explicit button: " but))