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