
18 Mar
2008
18 Mar
'08
11:06 a.m.
but I believe the macro lamda list syntax won't let us.
That's not an issue:
(defmacro case (thing &body body) ...)
...and do the parsing of body manually inside the macro. For example, defmethod and define-method-combination have to do that as well.
In case of case (ha!)
In English, puns mostly come for free. :)
, the parsing should be easy: What follows after thing is either :test or a cons, that's easy to distinguish.
Sounds good, thanks. I might write up a CDR for this, then. Leslie