Ian Price <ianpric...@googlemail.com> writes: > Mark H Weaver <m...@netris.org> writes: > >> Instead of using 'null?' and 'cdr' on the syntax object, can you please >> rework this to use 'syntax-case'? I.e. instead of (if (null? ...) ...) >> do this: >> >> (syntax-case #'(rest ...) () >> (() <null-case>) >> ((name rest ...) <non-null-case>)) >> >> What do you think? > > Yes, that would be much better. It's startling how often I forget I can > syntax-case this way. > > Changed, okay for me to push?
Yes, please push. Thanks, Mark