Modifying constructor for vl-define structures.
(change-vl-define x [:formals <formals>] [:body <body>] [:loc <loc>] [:stickyp <stickyp>])
This is an often useful alternative to make-vl-define.
We construct a new vl-define structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-define (x &rest args) (std::change-aggregate 'vl-define x args '((:formals . vl-define->formals) (:body . vl-define->body) (:loc . vl-define->loc) (:stickyp . vl-define->stickyp)) 'change-vl-define 'nil))