Laurent Orseau

Results 96 comments of Laurent Orseau

I just saw this, sorry. Thanks for the report. I'll make the change soon.

Note though that DrRacket has rules in `Edit|Preferences|Editing|Indenting` that are not taken into account by `fmt`, such as the extra regexps in particular. For example, if you `fmt` the quickscript...

How about `program-format` accepting DrRacket-like rules and then in the quickscript obtaining DrRacket rules and passing them to `program-format`?

Well, that's because it's an indenter, not a formatter as you well know. That doesn't mean that DrRacket's indentation rules should be entirely disregarded. At least, is it possible to...

There's actually an inconsistency with key-events here: When pressing shift alone, `(send ev get-shift-down)` is `#false`, but when releasing shift, the corresponding release event has `(send ev get-shift-down)` to `#true`....

> For the original question, I agree that the backward-compatibility issue here looks tricky. I don't know how existing code would be affected. > > For the `get-shift-down` part, that's...

see [framework/test](https://docs.racket-lang.org/framework/Test.html?q=framework%2Ftest) at least

Interesting, thanks for the idea! I guess it may be a simple matter of using `sync' on an`open-input-file' port, along with `make-temporary-file' and`file-or-directory-permissions'. With proper filenames, like 'rwind-socket-1', it should...

On Mon, Apr 8, 2013 at 1:49 PM, TauPan [email protected] wrote: > Thanks for your pointers, as I'm more familiar with the posix-api than the > particular way racket wraps...