Skip to content
  • Liam M. Healy's avatar
    New argument to defmobject · dd2e7673
    Liam M. Healy authored
    Add key argument :initialize-when-making to defmobject, which controls
    whether initialization (by calling reinitialize-instance or some other
    function) happens when the make-* function defined by this macro is
    called. Choices are
      T=yes always
      NIL=no
      :default-T=optional (default T)
      :default-NIL=optional (default NIL)
    and the default is T to be consistent with previous behavior.
    
    This is used in the newly defined defmobject 'permutation.
    dd2e7673