- changed status to resolved
Issue #165
resolved
This should return symbol but identifier.
(import (rnrs)) (define (match lis) (syntax-case lis () ((a b c) #'a) (_ 'ng))) (match '(a b c))
Comments (1)
-
reporter - Log in to comment
First check if the macro expansion is done during macro expansion phase (Fixes
#165)→ <<cset 1231de6d7dec>>