[racket] HTML 5

2013-12-24 Thread geb a
I am trying to use aspects of HTML 5 with some javascript (drag and drop) in an xml box.  Is HTML 5 supported? Best, Dan On Tuesday, December 24, 2013 9:02 AM, "users-requ...@racket-lang.org" wrote: Send users mailing list submissions to     users@racket-lang.org To subscribe or unsubsc

Re: [racket] testing impure stuff

2013-12-24 Thread Matthew Flatt
I'll add support for an optional directory-filtering function to `in-directory`. At Tue, 24 Dec 2013 05:24:50 +0100, Manfred Lotz wrote: > On Mon, 23 Dec 2013 20:51:16 -0600 > Robby Findler > wrote: > > > I don't think the proposed fix would "resist" in this manner. The > > directory could be de

Re: [racket] ~r behavior with respect to the sign

2013-12-24 Thread Pierpaolo Bernardi
On Tue, Dec 24, 2013 at 4:30 PM, Dmitry Pavlov wrote: > Hello, > > It seems that ~r formatting function, when given a negative > number and a #:min-width argument, does not treat the "-" > character as part of the number bound by #:min-width, > and moreover, it detaches the "-" from the number: U

[racket] ~r behavior with respect to the sign

2013-12-24 Thread Dmitry Pavlov
Hello, It seems that ~r formatting function, when given a negative number and a #:min-width argument, does not treat the "-" character as part of the number bound by #:min-width, and moreover, it detaches the "-" from the number: > (~r -34.567 #:precision '(= 2) #:min-width 7) "- 34.57" As an