Function: actypes::display-value

actypes::display-value is an interactive and byte-compiled function defined in hactypes.el.

Signature

(actypes::display-value LISP-EXPR)

Documentation

Evaluate LISP-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-value (lisp-expr)
  "Evaluate LISP-EXPR and display a message with the result value.
Return any non-nil value or t."
  (interactive "SDisplay value of Lisp expression: ")
  (let ((result (hypb:eval lisp-expr)))
    (message "%S" result)
    (or result t)))