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