Basic constructor macro for finalize-command structures.
(make-finalize-command [:args <args>])
This is the usual way to construct finalize-command structures. It simply conses together a structure with the specified fields.
This macro generates a new finalize-command structure from scratch. See also change-finalize-command, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-finalize-command (&rest args) (std::make-aggregate 'finalize-command args '((:args)) 'make-finalize-command nil))
Function:
(defun finalize-command (args) (declare (xargs :guard (operand-listp args))) (declare (xargs :guard t)) (let ((__function__ 'finalize-command)) (declare (ignorable __function__)) (b* ((args (mbe :logic (operand-list-fix args) :exec args))) (cons :finalize-command (list (cons 'args args))))))