[racket-dev] weirdest bug ever

2013-01-17 Thread Pierpaolo Bernardi
Hello, try the following in the interaction panel of DrRacket: (display (integer->char #x2144)) Or, just put this character in an editor buffer. The character is displayed 3 lines below its proper position. AFAIK, this character is a normal ‘Letterlike Symbol’. It shouldn't have any misterious

Re: [racket-dev] replacing current-load/use-compiled

2013-01-17 Thread Tobias Hammer
maybe there is a better way but you can write a little wrapper that changes the handler: ;; --- wrap.rkt (begin-for-syntax (require racket/base) (define old-handler (current-load/use-compiled)) (current-load/use-compiled (lambda args (printf "inside handler ~a\n" args) (apply old-

Re: [racket-dev] weirdest bug ever

2013-01-17 Thread Robby Findler
Cute. :) FWIW, it comes out right on the mac. Robby On Thu, Jan 17, 2013 at 6:03 AM, Pierpaolo Bernardi wrote: > Hello, > > try the following in the interaction panel of DrRacket: > > (display (integer->char #x2144)) > > Or, just put this character in an editor buffer. > The character is displ

Re: [racket-dev] weirdest bug ever

2013-01-17 Thread Ray Racine
On Thu, Jan 17, 2013 at 7:03 AM, Pierpaolo Bernardi wrote: > (display (integer->char #x2144)) Works fine on Linux, assuming it's an upside down Y -> ⅄ _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] weirdest bug ever

2013-01-17 Thread Matthias Felleisen
Dang cute. On Jan 17, 2013, at 7:03 AM, Pierpaolo Bernardi wrote: > Hello, > > try the following in the interaction panel of DrRacket: > > (display (integer->char #x2144)) > > Or, just put this character in an editor buffer. > The character is displayed 3 lines below its proper position. >

Re: [racket-dev] weirdest bug ever

2013-01-17 Thread Ben Goetter
On 1/17/2013 4:03 AM, Pierpaolo Bernardi wrote: (display (integer->char #x2144)) On Windows, Courier New (the default font for the drracket output pane) does not support U+2144. When I set the output pane to use a font that does support this character, such as Segoe UI Symbol, U+2144 displa

Re: [racket-dev] weirdest bug ever

2013-01-17 Thread Pierpaolo Bernardi
On Thu, Jan 17, 2013 at 3:46 PM, Ray Racine wrote: > Works fine on Linux, assuming it's an upside down Y -> ⅄ Yes. And here's how it looks on windows. <>_ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] weirdest bug ever

2013-01-17 Thread Pierpaolo Bernardi
On Thu, Jan 17, 2013 at 4:46 PM, Ben Goetter wrote: > On Windows, Courier New (the default font for the drracket output pane) does > not support U+2144. When I set the output pane to use a font that does > support this character, such as Segoe UI Symbol, U+2144 displays in the > correct bounding

[racket-dev] Racket sources getting mysteriously out of sync

2013-01-17 Thread Carl Eastlund
Recently I've run into some odd cases where I run "raco setup" and it rebuilds a whole bunch of stuff that should have been up-to-date. For instance, I have seen it rebuild all of the collections in a downloaded, pre-built installation of Racket that I had been using for a while. After the rebuil

[racket-dev] Pre-Release Checklist for v5.3.2

2013-01-17 Thread Ryan Culpepper
Checklist items for the v5.3.2 release (using the v5.3.1.900 release candidate build) Search for your name to find relevant items, reply when you finish an item (please indicate which item/s is/are done). Also, if you have any commits that should have been picked, make sure that the changes ar

[racket-dev] Release Announcement for v5.3.2

2013-01-17 Thread Ryan Culpepper
The release announcement sketch that I have so far is below. Please mail me new items and/or edits. -- mflatt: - generalized local-type tracking for unboxing (bdf1c3e1) - removed sirmail (3e505af4) - added file/untar (3a76581

Re: [racket-dev] Racket sources getting mysteriously out of sync

2013-01-17 Thread Laurent
I have indeed seen some similar behavior: On a Unix-like install, without changing any of Racket-bundled sources, from time to time, when I recompile one of my collections with `raco setup my-collection` it tries to rebuild all of Racket source tree (but fails, because it does not have write permis

[racket-dev] XREPL , log not working with extra log-receiver vector element in 5.3.2.1?

2013-01-17 Thread Greg Hendershott
Building as of 3312a806 from Jan 7: Welcome to Racket v5.3.2.1. -> ,log debug -> (log-debug "hi") -> ; match: no matching clause for '#(debug "hi" # #f) [,bt ; for context] Whereas: Welcome to Racket v5.3.1. -> ,log debug -> (log-debug "hi") -> ; [debug] hi # It's re the `match` in this code

[racket-dev] small GTK problem in 5.3..1.900

2013-01-17 Thread Laurent
Hi, I see many messages like this one when I run 5.3.1.900 from a terminal: LIBDBUSMENU-GTK: watch_submenu: assertion `GTK_IS_MENU_SHELL(menu)' failed It is not really blocking, but it makes my "Scripts" menu flicker a little or sometimes it even fails to show up. This problem was not present in 5

Re: [racket-dev] XREPL , log not working with extra log-receiver vector element in 5.3.2.1?

2013-01-17 Thread Greg Hendershott
Sorry for the false alarm. Although I'm still waiting for the build of latest to finish, on GitHub I discovered I'm missing 2a1f70264c0b0d9528a7802b7e01dbe002db39aa from 6 days ago. On Thu, Jan 17, 2013 at 2:14 PM, Greg Hendershott wrote: > Building as of 3312a806 from Jan 7: > > Welcome to Rack

Re: [racket-dev] Release Announcement for v5.3.2

2013-01-17 Thread Robby Findler
On Thu, Jan 17, 2013 at 12:57 PM, Ryan Culpepper wrote: > The release announcement sketch that I have so far is below. Please > mail me new items and/or edits. > --**--**-- > > mflatt: > - generalized local-type tracking for unboxi

Re: [racket-dev] Racket sources getting mysteriously out of sync

2013-01-17 Thread Robby Findler
You could try to see if it goes away when you don't set PLTCOMPILEDROOTS. If you look in cm, you'll see some code that pre-dates logging that, under some situations, prints out logging information. You could do some hack to turn that on (or, even better change it to use logging) and see if that tur

Re: [racket-dev] weirdest bug ever

2013-01-17 Thread Matthew Flatt
At Thu, 17 Jan 2013 18:54:25 +0100, Pierpaolo Bernardi wrote: > On Thu, Jan 17, 2013 at 4:46 PM, Ben Goetter wrote: > > > On Windows, Courier New (the default font for the drracket output pane) does > > not support U+2144. When I set the output pane to use a font that does > > support this chara

Re: [racket-dev] Release Announcement for v5.3.2

2013-01-17 Thread Matthias Felleisen
batch-io now provides functions that work on standard input and output On Jan 17, 2013, at 2:43 PM, Robby Findler wrote: > > > > On Thu, Jan 17, 2013 at 12:57 PM, Ryan Culpepper wrote: > The release announcement sketch that I have so far is below. Please > mail me new items and/or edits

Re: [racket-dev] small GTK problem in 5.3..1.900

2013-01-17 Thread Matthew Flatt
I haven't been able to provoke this warning. Can you tell me more about your OS distribution? (I tried Ubuntu 12.04, 32-bit mode, not necessarily up-to-date.) At Thu, 17 Jan 2013 20:22:49 +0100, Laurent wrote: > Hi, > I see many messages like this one when I run 5.3.1.900 from a terminal: > LIBDBU

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

2013-01-17 Thread Jay McCarthy
On Thu, Jan 17, 2013 at 11:46 AM, Ryan Culpepper wrote: > * Jay McCarthy > - Web Server Tests > - XML Tests > - HTML Tests > - PLAI Tests > - Racklog tests > - Datalog tests All passed Jay -- Jay McCarthy Assistant Professor / Brigham Young University http://faculty.cs.byu.edu/~ja

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

2013-01-17 Thread Danny Yoo
> * Danny Yoo > - Whalesong Tests (confirm that Whalesong runs from PLaneT) Yes, looking ok to me. _ Racket Developers list: http://lists.racket-lang.org/dev

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

2013-01-17 Thread Jon Rafkind
> * Jon Rafkind > Release tests for (one of the) linux releases: > - Test that the `racket' and `racket-textual' source releases > compile fine (note that they're still called `plt' and `mz' at > this stage). > - Test that the binary installers for both work, try each one in > b

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

2013-01-17 Thread Doug Williams
Done. On Thu, Jan 17, 2013 at 11:46 AM, Ryan Culpepper wrote: > Checklist items for the v5.3.2 release > (using the v5.3.1.900 release candidate build) > > Search for your name to find relevant items, reply when you finish an > item (please indicate which item/s is/are done). Also, if you have

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

2013-01-17 Thread Robby Findler
On Thu, Jan 17, 2013 at 12:46 PM, Ryan Culpepper wrote: > * Robby Findler > - DrRacket Tests > - Framework Tests > - Contracts Tests > - Games Tests - Teachpacks Tests: image tests - PLaneT Tests > - Redex Tests > Done > Updates: > - DrRacket Updates: update HISTORY > -

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

2013-01-17 Thread Neil Toronto
On 01/17/2013 11:46 AM, Ryan Culpepper wrote: * Neil Toronto - Plot Tests - Images Tests - Inspect icons Done and pass, along with the math tests. Can you add those to my list? Neil ⊥ _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] small GTK problem in 5.3..1.900

2013-01-17 Thread Laurent
Ubuntu 12.04.1, 32 bits $ uname -a Linux Eurisko 3.2.0-35-generic-pae #55-Ubuntu SMP Wed Dec 5 18:04:39 UTC 2012 i686 athlon i386 GNU/Linux (i386-linux/3m) (get-display-depth) = 32 On Thu, Jan 17, 2013 at 10:25 PM, Matthew Flatt wrote: > I haven't been able to provoke this warning. Can you te