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