Re: [racket-dev] [plt] Push #23424: master branch updated

2011-09-03 Thread Sam Tobin-Hochstadt
On Sat, Sep 3, 2011 at 5:37 PM, Matthew Flatt wrote: > At Sat, 3 Sep 2011 17:25:58 -0400, Sam Tobin-Hochstadt wrote: >> On Thu, Sep 1, 2011 at 5:20 PM,   wrote: >> > >> > src/racket/src/place.c >> > ~~ >> > + REGISTER_SO(quote_symbol); >> > + quote_symbol = scheme_intern_symbol

Re: [racket-dev] [plt] Push #23424: master branch updated

2011-09-03 Thread Matthew Flatt
At Sat, 3 Sep 2011 17:25:58 -0400, Sam Tobin-Hochstadt wrote: > On Thu, Sep 1, 2011 at 5:20 PM, wrote: > > > > src/racket/src/place.c > > ~~ > > + REGISTER_SO(quote_symbol); > > + quote_symbol = scheme_intern_symbol("quote"); > > This is the third definition of 'quote_symbol'

Re: [racket-dev] [plt] Push #23424: master branch updated

2011-09-03 Thread Sam Tobin-Hochstadt
On Thu, Sep 1, 2011 at 5:20 PM, wrote: > > src/racket/src/place.c > ~~ > + REGISTER_SO(quote_symbol); > + quote_symbol = scheme_intern_symbol("quote"); This is the third definition of 'quote_symbol' in the source. Are repeated definitions a problem? Can these be shared (oth

[racket-dev] autosave of unsaved files, docs

2011-09-03 Thread Shriram Krishnamurthi
The docs at http://docs.racket-lang.org/drracket/drracket-files.html?q=crash#(part._drracket-autosave-files) are all about the autosave of files that have already been associated with disk. What about those that haven't? There is no reference to the Documents/mredauto.* files, which thankfully

Re: [racket-dev] [racket] keyword args static checking and optimization

2011-09-03 Thread Neil Van Dyke
Matthew Flatt wrote at 08/08/2011 11:05 AM: I've implemented all of this (not yet pushed). It's more complex than I originally hoped, and I'm not yet sure it's worthwhile. Longer term, maybe it's better to work on ways for macros to more directly communicate with the optimizer. Thanks, Matthew.

Re: [racket-dev] Who page

2011-09-03 Thread Neil Van Dyke
Jay McCarthy wrote at 09/02/2011 02:55 PM: Community > People Aha. That seems a reasonable place for it; I just didn't look hard enough. BTW, that page has a typo in "an band", perhaps left over from an adjective. Finally, Racket is supported by an band of volunteers -- http://www.neilvand

Re: [racket-dev] signatures?

2011-09-03 Thread Michael Sperber
Danny Yoo writes: > I tried the following program in ASL. In Definitions: > > ; > (: g (Number -> Number)) > (define g > (lambda (x) > (if (= x 0) > x > (list "three" x > ;; > > I ran Definitio