[racket-dev] looks like pkg.racket-lang.org is hanging after making the connection again.

2013-09-30 Thread John Clements
I'm once again seeing pkg.racket-lang.org hanging after making the connection. Here's the transcript: curl -v --insecure 'https://pkg.racket-lang.org/' * About to connect() to pkg.racket-lang.org port 443 (#0) * Trying 128.187.105.226... * connected * Connected to pkg.racket-lang.org

Re: [racket-dev] looks like pkg.racket-lang.org is hanging after making the connection again.

2013-09-30 Thread Jay McCarthy
Thanks John. In the future, this means that something is broken and the machine needs to be kicked. I normally do it and Matthew sometimes does. But we were both in an airplane this morning. There's no need to try to debug when it fails, I get notified very quickly and respond ASAP. Jay On Mon,

[racket-dev] with-syntax and #:with are not compatible

2013-09-30 Thread Jay McCarthy
The following program errors: #lang racket/base (require (for-syntax racket/base syntax/parse)) (define-syntax (a1 stx) (syntax-parse stx [(_ b) (with-syntax ([x 5]) #'(+ b x))])) (a1 7) (define-syntax (a2 stx) (syntax-parse stx [(_ b) #:with x