Re: [racket] syntax/parse ellipses question

2010-06-11 Thread Eric Dobson
Thanks, that makes sense after looking very closely at the documentation. I was able to work around it by introducing a syntax-class, which had the added benefit of being more readable then nested ~or patterns. -Eric On Fri, Jun 11, 2010 at 3:56 PM, Ryan Culpepper wrote: > Eric Dobson wrote: >>

Re: [racket] syntax/parse ellipses question

2010-06-11 Thread Ryan Culpepper
Eric Dobson wrote: I'm trying to use the syntax/parse library, and am running into a weird problem when using ~or. It works without ellipses, but with ellipses it complains about a duplicated attribute. I would assume that the attributes with the same name in an ~or pattern were the same attribut

[racket] syntax/parse ellipses question

2010-06-11 Thread Eric Dobson
I'm trying to use the syntax/parse library, and am running into a weird problem when using ~or. It works without ellipses, but with ellipses it complains about a duplicated attribute. I would assume that the attributes with the same name in an ~or pattern were the same attribute that could just mat