Hello,<br><br>I recently had an issue of saving iterate extension code in sbcl fasl files.  Several folks have commented that the documentation on defclause-sequency could be more explicit on that topic.  Thus this email.<br>
<br>You can find the whole email thread here: <a href="http://common-lisp.net/pipermail/iterate-devel/2010-February/000654.html">http://common-lisp.net/pipermail/iterate-devel/2010-February/000654.html</a>  (the first email in that thread has an attachment with the original problem file).<br>
<br>Basically the problem was the following defclause-sequence definition:<br><br>(defclause-sequence matrix-row matrix-row-index<br>  :access-fn<br>  (lambda (grid index)<br>    (assert (and (grid:gridp grid) (eql (grid:grid-rank grid) 2))<br>
        (grid))<br>    (grid:row grid index))<br>  :size-fn<br>  (lambda (grid)<br>    (assert (and (grid:gridp grid) (eql (grid:grid-rank grid) 2))<br>        (grid))<br>... etc.<br><br>In an interpreted list, such as clisp, there were no problems with this form.  But in a compiled list, such as sbcl, the form could be evaluated, but could not be saved in a fasl. Thus compile file and asdf loading did not work.  <br>
<br>The solution was to quote the lambda forms:<br>(defclause-sequence matrix-row matrix-row-index<br>
  :access-fn<br>
  '(lambda (grid index)<br>
    (assert (and (grid:gridp grid) (eql (grid:grid-rank grid) 2))<br>
        (grid))<br>
    (grid:row grid index))<br>
  :size-fn<br>
  '(lambda (grid)<br>
    (assert (and (grid:gridp grid) (eql (grid:grid-rank grid) 2))<br>
        (grid))<br>
... etc.<br><br>Important to note, sharp-quoting -- #' -- such as in the example code in the manual, did not work.<br><br>My (very incomplete understanding) is that storing lists (such as '(lambda ...) in fasl's is OK, and iter can figure out what to do with them once read back in.  But not storing compiled objects (which a #'(lambda ...) cannot be stored in fasl's.<br>
<br>I propose that the documentation be changed, with perhaps a few additional examples.  I would be glad to work with one of the developers/maintainers off-line on this issue.<br><br>Regards,<br><br>Mirko<br>