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