Re: [racket-users] Run Button interaction

2016-08-03 Thread Stephen De Gabrielle
Hi, The DrRacket tools documentation is good but I don't think it answers this sort of question. You may find the right 'hook' in the Racket GUI Application Framework http://docs.racket-lang.org/framework/index.html I'd start with searching the source of the translations file (strings I think)

Re: [racket-users] How do I "make base"

2016-08-03 Thread Stephen Chang
> It was also suggested that it is not in src/Makefile, instead: "I'm usually in the top-level checkout dir", to quote stamourv. Is this what you're looking for? https://github.com/racket/racket/blob/master/Makefile#L153-L160 On Wed, Aug 3, 2016 at 1:02 PM, Tim Brown wrote: >

Re: [racket-users] How do I "make base"

2016-08-03 Thread 'William J. Bowman' via users-redirect
I always forget the build process when I'm hacking on Racket too and have to glare at the INSTALL file for a while. Maybe the INSTALL file has too much detail, or the wrong details, and the instructions get lost in it? I always build a minimal install via `make PKGS=base in-place` from the

[racket-users] How do I "make base"

2016-08-03 Thread Tim Brown
Here's hoping someone can answer this without too much (any) difficulty: I have the Unix source in racket-6.6-src.tgz from the download page. It's untarred into racket-6.6 . I want this because it has a superset of the packages I'll eventually want in my installation. If I: configure make

[racket-users] Macro expanding to #'(begin) lacks arrows in DrRacket

2016-08-03 Thread Dupéron Georges
I have two files, `a.rkt` and `b.rkt`: ;; a.rkt #lang racket (provide foo) (define-syntax (foo stx) ;; Do some compile-time side effects here… #'(begin)) ;; b.rkt #lang racket (require "a.rkt") (foo) The `foo` macro defined in `a.rkt` does some side effects, and expands to `(begin)`. When