Function: hui:hbut-report
hui:hbut-report is an interactive and byte-compiled function defined
in hui.el.
Signature
(hui:hbut-report &optional ARG)
Documentation
Pretty print attributes of current button, using optional prefix ARG.
See hbut:report.
Key Bindings
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui.el
(defun hui:hbut-report (&optional arg)
"Pretty print attributes of current button, using optional prefix ARG.
See `hbut:report'."
(interactive "P")
(if (and arg (symbolp arg))
(hui:hbut-help arg)
(let ((total (hbut:report arg)))
(when total
(hui:help-ebut-highlight)
(message "%d button%s." total (if (/= total 1) "s" ""))))))