A copying macro that lets you create new vl-idtoken-p structures, based on existing structures.
Syntax:
(change-vl-idtoken x [:etext <etext>] [:name <name>] [:breakp <breakp>])
This is a sometimes useful alternative to make-vl-idtoken.
It constructs a new vl-idtoken-p structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-idtoken (x &rest args) (std::change-aggregate 'vl-idtoken x args '((:etext . vl-idtoken->etext) (:name . vl-idtoken->name) (:breakp . vl-idtoken->breakp)) 'change-vl-idtoken 'remake-vl-idtoken))