Constructor macro for vls-commandinfo-p structures.
Syntax:
(make-vls-commandinfo [:fn <fn>] [:args <args>] [:type <type>])
This is our preferred way to construct vls-commandinfo-p structures. It simply conses together a structure with the specified fields.
This macro generates a new vls-commandinfo-p structure from scratch. See also change-vls-commandinfo, which can "change" an existing structure, instead.
The vls-commandinfo-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-vls-commandinfo instead.
This is an ordinary
Macro:
(defmacro make-vls-commandinfo (&rest args) (std::make-aggregate 'vls-commandinfo args '((:fn) (:args) (:type)) 'make-vls-commandinfo nil))