A copying macro that lets you create new vl-psconfig-p structures, based on existing structures.
Syntax:
(change-vl-psconfig x [:autowrap-col <autowrap-col>] [:autowrap-ind <autowrap-ind>] [:htmlp <htmlp>] [:tabsize <tabsize>] [:package <package>] [:base <base>] [:eviscconfig <eviscconfig>])
This is a sometimes useful alternative to make-vl-psconfig.
It constructs a new vl-psconfig-p structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-psconfig (x &rest args) (std::change-aggregate 'vl-psconfig x args '((:autowrap-col . vl-psconfig->autowrap-col) (:autowrap-ind . vl-psconfig->autowrap-ind) (:htmlp . vl-psconfig->htmlp) (:tabsize . vl-psconfig->tabsize) (:package . vl-psconfig->package) (:base . vl-psconfig->base) (:eviscconfig . vl-psconfig->eviscconfig)) 'change-vl-psconfig 'nil))