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