Function: actypes::display-variable
actypes::display-variable is an interactive and byte-compiled function
defined in hactypes.el.
Signature
(actypes::display-variable VAR)
Documentation
Evaluate VAR (a symbol) and display a message with the result value.
Return any non-nil value or t.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hactypes.el
(defact display-variable (var)
"Evaluate VAR (a symbol) and display a message with the result value.
Return any non-nil value or t."
(interactive "vDisplay value of variable: ")
(message "%s = %S" var (symbol-value var))
(or (symbol-value var) t))