Modifying constructor for sdm-instruction-table-entry structures.
(change-sdm-instruction-table-entry x
[:title <title>]
[:implemented <implemented>]
[:unimplemented <unimplemented>]
[:doc <doc>]
[:subsecs <subsecs>])
This is an often useful alternative to make-sdm-instruction-table-entry.
We construct a new sdm-instruction-table-entry structure that is a copy of
This is an ordinary
Macro:
(defmacro change-sdm-instruction-table-entry (x &rest args) (std::change-aggregate 'sdm-instruction-table-entry x args '((:title . sdm-instruction-table-entry->title) (:implemented . sdm-instruction-table-entry->implemented) (:unimplemented . sdm-instruction-table-entry->unimplemented) (:doc . sdm-instruction-table-entry->doc) (:subsecs . sdm-instruction-table-entry->subsecs)) 'change-sdm-instruction-table-entry 'nil))