bug#20546: Syntax bug in master branch (till d99fedc5fd38c0)

2016-08-07 Thread Andy Wingo
On Thu 23 Jun 2016 22:27, Andy Wingo writes: > On Mon 11 May 2015 12:29, Nala Ginrut writes: > >> I'm using master branch (till d99fedc5fd38c0), and I found this code >> can't run in 2.1, but works in 2.0: >> >> (define-syntax define-art >> (lambda (x) >>(syntax-case x () >> ((_ name)

bug#20546: Syntax bug in master branch (till d99fedc5fd38c0)

2016-06-23 Thread Andy Wingo
On Mon 11 May 2015 12:29, Nala Ginrut writes: > I'm using master branch (till d99fedc5fd38c0), and I found this code > can't run in 2.1, but works in 2.0: > > (define-syntax define-art > (lambda (x) >(syntax-case x () > ((_ name) (identifier? #'name) > #`(begin > (define na

bug#20546: Syntax bug in master branch (till d99fedc5fd38c0)

2015-05-11 Thread Nala Ginrut
I'm using master branch (till d99fedc5fd38c0), and I found this code can't run in 2.1, but works in 2.0: -code--- (define-syntax define-art (lambda (x) (syntax-case x () ((_ name) (identifier? #'name) #`(begin (defin