Function: actypes::display-boolean
actypes::display-boolean is an interactive and byte-compiled function
defined in hactypes.el.
Signature
(actypes::display-boolean BOOL-EXPR)
Documentation
Evaluate BOOL-EXPR 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-boolean (bool-expr)
"Evaluate BOOL-EXPR and display a message with the result value.
Return any non-nil value or t."
(interactive "xDisplay value of boolean expression: ")
(let ((result (hypb:eval bool-expr)))
(message "Result = %S; Boolean value = %s; Expr = %S"
result (if result "True" "False") bool-expr)
(or result t)))