Matthew Flatt
Matthew Flatt
Thanks for the info! Does a build from source behave differently? I think it might, because the problem may be a limitation for creating a portable Linux executable. A shift...
So far, I don't think `copy-file `should have a permissions argument. It seems like the main use of having a file to copy would be to get its attributes along...
Maybe I'm missing something, but this doesn't sound right. Running GUI code in an unrelated thread means that you're manipulating GUI elements in a thread other than the handler thread,...
GUI programs work with a REPL because `racket/gui` sets `current-get-interaction-input-port` to do something analogous to `(yield input-ch)`. DrRacket takes a slightly different approach of just using `(yield)` and new input...
Your right that is [Eventspaces and Threads](https://docs.racket-lang.org/gui/windowing-overview.html#%28part._espacethreads%29) is the current documentation. Does the draft revision at https://github.com/mflatt/gui/commit/22c06cd4ff799959bdab1dc90bda0c9e18480d49 look closer to the right message?
As Jay says, the element for a `make-bib` location doesn't have to be constructed by a provided function like `book-location`, but the documentation doesn't provide any guidance on how location...
I agree that it could be mentioned in more places, but I'll note that left-to-right evaluation is specifically a property of the `#%app` form, and it's specified [there](https://docs.racket-lang.org/reference/application.html#%28form._%28%28lib._racket%2Fprivate%2Fbase..rkt%29._~23~25app%29%29).
It looks like the `racket` launcher may be configured to start itself. (That would explain why the command line eventually gets too long, since each start of itself will add...
A guess about the `./mred` error: Something goes wrong with the startup so that the process cannot find the main `collects` directory, but it can find installed packages. The `draw-lib`...
For MrEd and GRacket, I think the repair is to make https://github.com/racket/gui/blob/master/gui-lib/mred/installer.rkt#L75 more like https://github.com/racket/racket/blob/master/racket/collects/racket/private/tethered-installer.rkt#L24