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