Closed justinethier closed 10 years ago
I suspect forms that contain ... .
such as below could cause problems:
((cl ((p ::: . tail) . body)
Would a simple fix be to reduce that to ...
, or is that too simple?
Actual fix is based on previous comment. The problem is that the macro subsystem cannot distinguish between . tail
and tail ...
so it cannot match the actual dotted pair structure. For now the macro has been rewritten to work around this problem.
Receive the following error when attempting to run the
case-lambda
example from r7rs: