syntax-case returns identifier even it's not macro expansion phase

Issue #165 resolved
Takashi Kato repo owner created an issue

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)

  1. Log in to comment