Function: action:create
action:create is a byte-compiled function defined in hact.el.
Signature
(action:create PARAM-LIST BODY)
Documentation
Create Hyperbole action defined by PARAM-LIST and BODY, a list of Lisp forms.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hact.el
(defun action:create (param-list body)
"Create Hyperbole action defined by PARAM-LIST and BODY, a list of Lisp forms."
(if (symbolp body)
body
(list 'function (cons 'lambda (cons param-list body)))))