Re: [racket-dev] REPL crash

2010-12-01 Thread Matthew Flatt
At Tue, 30 Nov 2010 23:51:57 +0100, Dmitry Chestnykh wrote: Seg fault (internal error) at 0x4 Bus error Mac OS X 10.6.5, same result on Racket 5.0.2 and 6c25210a6bb8 from git. Fixed in the git repo. Thanks for the report! Matthew _ For

[racket-dev] Refactoring in-vector and friends

2010-12-01 Thread Noel Welsh
Hi all, I spent (far too much) time this morning refactoring the definition of in-vector to expose the building blocks to compose these macro/functions. After refactoring the code for defining in-vector is: (define-:vector-like-gen :vector-gen unsafe-vector-ref) (define-in-vector-like

Re: [racket-dev] code base metrics

2010-12-01 Thread Jon Rafkind
And because I already started it, here is the entire collects tree (370k file) http://www.cs.utah.edu/~rafkind/tmp/racket-definitions.txt On 11/29/2010 03:34 PM, Matthias Felleisen wrote: That makes sense. For now, I am fine with this very first-order approximation. Thanks On Nov 29,

Re: [racket-dev] [racket] Exploratory programming?

2010-12-01 Thread engineer
1. I've been meaning for a long time to mention some things like this. Another example is modulus (modulo and remainder work). It'd be nice to have a list of suggestions returned whenever certain words were typed or whenever no results are returned. 2. Search Manuals breaks the browser's Back

Re: [racket-dev] [racket] Exploratory programming?

2010-12-01 Thread John Clements
On Dec 1, 2010, at 2:51 PM, engin...@alum.mit.edu wrote: 1. I've been meaning for a long time to mention some things like this. Another example is modulus (modulo and remainder work). It'd be nice to have a list of suggestions returned whenever certain words were typed or whenever no

Re: [racket-dev] [racket] Exploratory programming?

2010-12-01 Thread Eli Barzilay
Four hours ago, engin...@alum.mit.edu wrote: 2. Search Manuals breaks the browser's Back button. Here's a simple example. a. Open http://docs.racket-lang.org/ b. Type modulus in the search manuals box and hit Enter c. No matches found, so change the highlighted text to modulo d. Click on

Re: [racket-dev] [racket] Exploratory programming?

2010-12-01 Thread Matthias Felleisen
In Safari this error doesn't show up. On Dec 1, 2010, at 9:52 PM, Eli Barzilay wrote: Four hours ago, engin...@alum.mit.edu wrote: 2. Search Manuals breaks the browser's Back button. Here's a simple example. a. Open http://docs.racket-lang.org/ b. Type modulus in the search manuals

Re: [racket-dev] [racket] Exploratory programming?

2010-12-01 Thread engineer
My FF and IE behave as does Chrome. I've heavily configure my FF and may have messed it up, but my IE is quite vanilla. -Paul -Original Message- From: Eli Barzilay [mailto:e...@barzilay.org] Sent: Wednesday, December 01, 2010 9:52 PM To: engin...@alum.mit.edu Cc: 'dev';

Re: [racket-dev] code base metrics

2010-12-01 Thread Matthias Felleisen
Thanks. When I re-run my 'averaging' I get around 34% exports. BTW, your script is broken. Look for view: name On Dec 1, 2010, at 4:36 PM, Jon Rafkind wrote: And because I already started it, here is the entire collects tree (370k file)

Re: [racket-dev] code base metrics

2010-12-01 Thread Jon Rafkind
Oh, there were some errors while running the script so to clean it up I just did 'grep defined out' :p /home/kazzmir/svn/plt/racket/collects/htdp/tests/guess-gui.rkt:10:3: view: name is not defined, not a parameter, and not a primitive name in: view On 12/01/2010 08:40 PM, Matthias Felleisen