Actually I am just trying to trigger gmane picking up cells-devel.<br><br>Meanwhile, over on the SoC PyCells project they a feedfest started as everyone tore the algorithm apart (and started their own version of Cells). The group decided Cells was OK.
<br><br>Oh, yeah. I finally fixed defclass. There is now an abbreviated defmodel, DEFMD:<br><br>(defmd defmd-test (md-test-super)<br>    (aaa :cell nil :initform nil :initarg :aaa :accessor aaa) ;; defmd would have written the same on just "aaa"
<br>    (aa2 :documentation "hi mom") ;; expands into all-the-above<br>    bbb ;; same as aaa<br>    (ccc 42 :allocation :class) ;; if second arg is not slot def keyword, it is an :initform.<br>    (ddd (c-in nil) :cell :ephemeral)
<br>    :superx 42 ;; default-initarg<br>    (:documentation "as if!")) <br><br><br>kt<br>