On Sat, Apr 5, 2008 at 4:05 PM, Barry Fishman barry_fishman@acm.org wrote: [...]
Test DEFCFUN.VARARGS.DOCSTRINGS failed
[...]
$ clisp -q -norc [1]> (setf (documentation 'bozo 'function) "bozo docstring") NIL [2]> (documentation 'bozo 'function) NIL
[...]
Interesting, this is what makes this particular test fail though:
$ clisp -q -norc [1]> (defmacro foo () "docstring" nil) FOO [2]> (documentation 'foo 'function) "docstring" [3]> (compile 'foo) FOO ; NIL ; NIL [4]> (documentation 'foo 'function) NIL