A copying macro that lets you create new vl-json-opts-p structures, based on existing structures.
Syntax:
(change-vl-json-opts x [:help <help>] [:readme <readme>] [:output <output>] [:start-files <start-files>] [:plusargs <plusargs>] [:search-path <search-path>] [:include-dirs <include-dirs>] [:search-exts <search-exts>] [:defines <defines>] [:edition <edition>] [:strict <strict>] [:mem <mem>])
This is a sometimes useful alternative to make-vl-json-opts.
It constructs a new vl-json-opts-p structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-json-opts (x &rest args) (std::change-aggregate 'vl-json-opts x args '((:help . vl-json-opts->help) (:readme . vl-json-opts->readme) (:output . vl-json-opts->output) (:start-files . vl-json-opts->start-files) (:plusargs . vl-json-opts->plusargs) (:search-path . vl-json-opts->search-path) (:include-dirs . vl-json-opts->include-dirs) (:search-exts . vl-json-opts->search-exts) (:defines . vl-json-opts->defines) (:edition . vl-json-opts->edition) (:strict . vl-json-opts->strict) (:mem . vl-json-opts->mem)) 'change-vl-json-opts 'nil))