Re: [racket-dev] Pre-Release Checklist for v5.2.1

2012-01-18 Thread Danny Yoo
> * Danny Yoo >  - Whalesong Tests (confirm that Whalesong runs from PLaneT) All passed. _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Pre-Release Checklist for v5.2.1

2012-01-18 Thread Stephen Chang
> * Stephen Chang >  - Lazy Racket Tests>  - Lazy stepper > tests> All passed. On Tue, Jan 17, 2012 at 6:44 PM, Ryan Culpepper wrote: > Checklist items for the v5.2.1 release >  (using the v5.2.0.900 release candidate build) > > Search for your name to find relevant items, reply when you finish

Re: [racket-dev] how to disable intra-module constant inlining?

2012-01-18 Thread Danny Yoo
> So Whalesong is actually breaking on a few of my test case examples > because 5.2.1 does some aggressive inlining.  Specifically, it's doing > intra-module constant optimizations.  Whalesong depends on the late > binding of module bindings in some special places (specifically, the > FFI), so I ne

[racket-dev] how to disable intra-module constant inlining?

2012-01-18 Thread Danny Yoo
Hi everyone, So Whalesong is actually breaking on a few of my test case examples because 5.2.1 does some aggressive inlining. Specifically, it's doing intra-module constant optimizations. Whalesong depends on the late binding of module bindings in some special places (specifically, the FFI), so

[racket-dev] please merge to release: Fwd: [plt] Push #24173: master branch updated

2012-01-18 Thread John Clements
Sorry, should have put this in the commit messages: please merge both of these to the release branch. John Begin forwarded message: > From: cleme...@racket-lang.org > Date: January 18, 2012 2:51:50 PM PST > To: dev@racket-lang.org > Subject: [plt] Push #24173: master branch updated > > clemen

Re: [racket-dev] Pre-Release Checklist for v5.2.1

2012-01-18 Thread Jay McCarthy
On Tue, Jan 17, 2012 at 4:44 PM, Ryan Culpepper wrote: > * Jay McCarthy >  - Web Server Tests >  - XML Tests >  - HTML Tests >  - PLAI Tests >  - Racklog tests >  - Datalog tests All passed -- Jay McCarthy Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~jay "The glo

Re: [racket-dev] problem with require and frtime

2012-01-18 Thread Matthew Flatt
At Wed, 18 Jan 2012 12:02:10 +0100, Marijn wrote: > the following fragment: > > > #lang frtime > > (require (only-in srfi/1 every)) > > > leads to ```only-in: bad module path in: (only-in srfi/1 every)''' > error. The `frtime' language builds on (the older) `scheme' language instead of `rack

Re: [racket-dev] Pre-Release Checklist for v5.2.1

2012-01-18 Thread Michael Sperber
Ryan Culpepper writes: > Checklist items for the v5.2.1 release > * Mike Sperber > - DMdA Tests > - Stepper Tests > - Signature Tests Done. -- Cheers =8-} Mike Friede, Völkerverständigung und überhaupt blabla _ Racket Developers list: http://lists.racket-lan

[racket-dev] problem with require and frtime

2012-01-18 Thread Marijn
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, the following fragment: #lang frtime (require (only-in srfi/1 every)) leads to ```only-in: bad module path in: (only-in srfi/1 every)''' error. At the same time this other fragment: #lang racket (require frtime) (require srfi/1) leads t