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