Re: [racket-dev] Abort behavior different in DrRacket & Racket

2012-05-30 Thread Robby Findler
I've pushed a fix for this. Thanks for pointing it out. Robby On Wed, May 23, 2012 at 4:42 PM, Asumu Takikawa wrote: > Hi all, > > In the Guide entry on control[1], there's a section detailing prompts > and abort. Here's an example from that section: > >> (define (escape v) >    (abort-current-c

[racket-dev] Abort behavior different in DrRacket & Racket

2012-05-23 Thread Asumu Takikawa
Hi all, In the Guide entry on control[1], there's a section detailing prompts and abort. Here's an example from that section: > (define (escape v) (abort-current-continuation (default-continuation-prompt-tag) (lambda () v))) > (+ 1 (+ 1 (+ 1 (+ 1 (+ 1 (+ 1 (escape 0))) If you r