Re: [racket-dev] image snips and pretty-print (#lang htdp/bsl and snips)

2011-09-01 Thread Danny Yoo
On Thu, Sep 1, 2011 at 5:13 PM, Robby Findler wrote: > Maybe something like this is what you want (but I always get lost in > the multitude of handlers so this might not be quite the right place > to put this code). [diff cut] Yes, this works for me as well. _

Re: [racket-dev] image snips and pretty-print (#lang htdp/bsl and snips)

2011-09-01 Thread Robby Findler
Maybe something like this is what you want (but I always get lost in the multitude of handlers so this might not be quite the right place to put this code). diff --git a/collects/htdp/bsl/runtime.rkt b/collects/htdp/bsl/runtime.rkt index d612aad..2865445 100644 --- a/collects/htdp/bsl/runtime.rkt

[racket-dev] image snips and pretty-print (#lang htdp/bsl and snips)

2011-09-01 Thread Danny Yoo
How are image snips and pretty-print supposed to interact? I've isolated the bug that's been preventing image snips from printing in something like: ;; #lang htdp/bsl (require 2htdp/image) (circle 20 'solid 'green) ;; >From what I