Re: [racket] teachpack/htdp/image

2010-07-09 Thread Eli Barzilay
On Jul 9, Jos Koot wrote: > > Strange: when going directly to doc/index.html in my > Racket-Full-5.0.0.8 directory I do get all hits. The problem occurs > only when running Racket Documentation.exe or choosing help in > DrRacket. May be this gives a clue? The latter would take you to your use

Re: [racket] PLT Tools webpage

2010-07-09 Thread Eli Barzilay
On Jul 8, Stephen De Gabrielle wrote: > I think the same applies to divascheme, drsync, mreddesigner on > planet. > > In my mind it asks the question if slideshow or Algol 60 should be > on planet, especially in regards to the recent discussion about the > size of the download. If everything goe

[racket] macro and set! problem

2010-07-09 Thread Skeptic .
Hi, I was trying to come up with a naive implementation of check-expect/test and I found out that if a macro expands to a set! on a module-level variable directly, an error will be given when using the macro from another module. A simple fix seems to instead have the macro to expands to a func

[racket] Racket doesn't prompt to debug open .SS files

2010-07-09 Thread Greg Hendershott
Apologies if this is already bugged (or considered a non-bug), but: Using Racket on an old PLT Scheme 4 project with .SS files. Debugger didn't prompt offering to debug other open .SS files used by the main file. After a couple minutes of "huh"-ing and "frak"-ing I took a guess and renamed all th

[racket] design and use of continuation barriers

2010-07-09 Thread Taylor R Campbell
(I am not subscribed to this list, so please cc me in replies.) I have several questions about continuation barriers. I have tested some examples in PLT Scheme v4.2.4, because that's what I have handy; if the semantics has changed significantly in Racket, let me know before wasting time with the

Re: [racket] Problem with packages in Racket 5.0

2010-07-09 Thread Matthew Flatt
This problem is now fix in the git repo. Specifically, the problem was that Planet (or `raco setup') would drop entries from "cache.rktd" when the corresponding package has "info.ss" instead of "info.rkt". Of course, almost all Planet packages currently use "info.ss". Thanks for the report! At T

Re: [racket] Compilation of program in racket failed

2010-07-09 Thread Matthew Flatt
At Fri, 09 Jul 2010 16:21:14 +0100, Paulo J. Matos wrote: > Matthew Flatt writes: > > > > > This looks like a bug in the module-name resolver created for the > > executable. > > > > Is one of the following true?: > > > > * "esmc-mode.rkt" (or ".ss") uses `(require (planet ))' to refer > >

[racket] Undefined Behavior in C/C++

2010-07-09 Thread Robby Findler
For those that are not familiar with "undefined behavior" in the technical sense of language specifications, do check out this excellent blog post by John Regehr: http://blog.regehr.org/archives/213 [ not exactly on topic here, I know, but still worthwhile reading for much of this crowd, I'd gu

Re: [racket] Compilation of program in racket failed

2010-07-09 Thread Noel Welsh
On Fri, Jul 9, 2010 at 4:21 PM, Paulo J. Matos wrote: > esmc-mode.scm has: > , > | (require (planet "modes/esmc-mode/search-sig.scm" ("pjmatos" "eboc.plt" 1 > 0))) > ` A module should refer to other modules in the same collection with an undecorated require: (require "search-sig.scm")

Re: [racket] Compilation of program in racket failed

2010-07-09 Thread Paulo J. Matos
Matthew Flatt writes: > > This looks like a bug in the module-name resolver created for the > executable. > > Is one of the following true?: > > * "esmc-mode.rkt" (or ".ss") uses `(require (planet ))' to refer >to a Planet package. > >In that case, what form of Planet path does it us

Re: [racket] Compilation of program in racket failed

2010-07-09 Thread Matthew Flatt
At Fri, 09 Jul 2010 11:49:59 +0100, Paulo J. Matos wrote: > Hello, > > I can run my program in DrRacket, however, when I go the command line > and issue: > , > | pma...@pm18pc01:~/Code/eboc$ ~/Applications/racket-5.0/bin/raco exe -o > | eboc main.scm > | pma...@pm18pc01:~/Code/eboc$ ./eboc > |

Re: [racket] Does AMF en/decoder exist in PLaneT?

2010-07-09 Thread Noel Welsh
Not that I know of. (BTW, AMF is http://en.wikipedia.org/wiki/Action_Message_Format I assume) N. On Fri, Jul 9, 2010 at 7:23 AM, 장유현 wrote: > > for FLEX > > Like BlazeDS . _ For list-related administrative tasks: http://lists.racket-lang.org/l

Re: [racket] Compilation of program in racket failed

2010-07-09 Thread Laurent
Hi, I can't help you with your first question. Another thing I would like is a self-contained command line executable > that I can easily distribute to people without racket installed. ++lib > embeds libraries in the executable > but I use so many libraries that finding them all in order to list

Re: [racket] teachpack/htdp/image

2010-07-09 Thread Jos Koot
Strange: when going directly to doc/index.html in my Racket-Full-5.0.0.8 directory I do get all hits. The problem occurs only when running Racket Documentation.exe or choosing help in DrRacket. May be this gives a clue? Jos > -Original Message- > From: users-boun...@racket-lang.org > [m

[racket] Compilation of program in racket failed

2010-07-09 Thread Paulo J. Matos
Hello, I can run my program in DrRacket, however, when I go the command line and issue: , | pma...@pm18pc01:~/Code/eboc$ ~/Applications/racket-5.0/bin/raco exe -o | eboc main.scm | pma...@pm18pc01:~/Code/eboc$ ./eboc | standard-module-name-resolver: collection not found: "planet" in any of: |

Re: [racket] teachpack/htdp/image

2010-07-09 Thread Jos Koot
I just unstalled 5.0.0.1 and downloaded and installed FULL 5.0.0.8--2010-07-08(56077a1/a) [3m] The problem is still there. Thanks, Jos > -Original Message- > From: robby.find...@gmail.com > [mailto:robby.find...@gmail.com] On Behalf Of Robby Findler > Sent: 09 July 2010 12:00 > To: Jos K

Re: [racket] teachpack/htdp/image

2010-07-09 Thread Robby Findler
It should be in there, but there might have been a bug on that day that got fixed somehow. Did you try (re-)running raco setup to completion to see if the documentation indicies got corrupted? Robby On Fri, Jul 9, 2010 at 4:39 AM, Jos Koot wrote: > Full version 5.0.0.1--2010-06-22(550a8b3/a) [3m

Re: [racket] teachpack/htdp/image

2010-07-09 Thread Jos Koot
Full version 5.0.0.1--2010-06-22(550a8b3/a) [3m] Jos > -Original Message- > From: robby.find...@gmail.com > [mailto:robby.find...@gmail.com] On Behalf Of Robby Findler > Sent: 09 July 2010 11:34 > To: Jos Koot > Cc: us...@lists.racket-lang.org > Subject: Re: [racket] teachpack/htdp/image

Re: [racket] teachpack/htdp/image

2010-07-09 Thread Robby Findler
What version are you using? Robby On Fri, Jul 9, 2010 at 2:03 AM, Jos Koot wrote: > Yes after searching it says "Showing all matches". > When using http://docs.racket-lang.org/search/index.html I do see more > matches among which put-pinhole. > Jos > >> -Original Message- >> From: robby.

Re: [racket] teachpack/htdp/image

2010-07-09 Thread Jos Koot
Yes after searching it says "Showing all matches". When using http://docs.racket-lang.org/search/index.html I do see more matches among which put-pinhole. Jos > -Original Message- > From: robby.find...@gmail.com > [mailto:robby.find...@gmail.com] On Behalf Of Robby Findler > Sent: 08 Jul