Function: actype:identity
actype:identity is a byte-compiled function defined in hact.el.
Signature
(actype:identity &rest ARGS)
Documentation
Return list of ARGS unchanged or if no ARGS, return t.
Used as the setting of hrule:action to inhibit action evaluation.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hact.el
(defun actype:identity (&rest args)
"Return list of ARGS unchanged or if no ARGS, return t.
Used as the setting of `hrule:action' to inhibit action evaluation."
(or args t))