Modifying constructor for ienv structures.
(change-ienv x [:uchar-format <uchar-format>] [:schar-format <schar-format>] [:char-format <char-format>] [:short-format <short-format>] [:int-format <int-format>] [:long-format <long-format>] [:llong-format <llong-format>])
This is an often useful alternative to make-ienv.
We construct a new ienv structure that is a copy of
This is an ordinary
Macro:
(defmacro change-ienv (x &rest args) (std::change-aggregate 'ienv x args '((:uchar-format . ienv->uchar-format) (:schar-format . ienv->schar-format) (:char-format . ienv->char-format) (:short-format . ienv->short-format) (:int-format . ienv->int-format) (:long-format . ienv->long-format) (:llong-format . ienv->llong-format)) 'change-ienv 'nil))