Function: hbut:rename
hbut:rename is a byte-compiled function defined in hbut.el.
Signature
(hbut:rename BUT)
Documentation
Interactively rename the Hyperbole button BUT from the current buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun hbut:rename (but)
"Interactively rename the Hyperbole button BUT from the current buffer."
(cond ((ebut:is-p but)
(ebut:to (ebut:key but))
(call-interactively #'hui:ebut-rename))
((ibut:is-p but)
(ibut:to (ibut:key but))
(call-interactively #'hui:ibut-rename))
(t
(hypb:error "(hbut:rename): Button is invalid; it has no attributes"))))