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
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-
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
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
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.
>
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
> * Danny Yoo
> - Whalesong Tests (confirm that Whalesong runs from PLaneT)
Yes, looking ok to me.
_
Racket Developers list:
http://lists.racket-lang.org/dev
> * 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
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
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
> -
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
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
27 matches
Mail list logo