Matthew Flatt
Matthew Flatt
In that log, it looks like all the tests fail because "primvars.ms" isn't found. Something going wrong with paths?
Adding a new package is always worrying, but I'd be happy to have a solution here. Would using `minimal` instead of `export` work and potentially avoid unwanted interactions with uses...
Thanks for investigating more. My vague memory of table-cell alignment was that the CSS and Latex models were deeply different, and I found some approximation that worked for some common...
The first of the two commits looks like a clear improvement. For the second commit, I'm still reluctant to pull in the extra support for `configure` to define `CC_FOR_BUILD`. Also,...
I think I understand the logic here, but I have some reservations. Although Racket must sometimes bend over backwards to conform to OS requirements, I can't think of a place...
Yes, along with https://github.com/racket/gui/blob/master/gui-lib/mred/private/wx/gtk/tab-panel.rkt https://github.com/racket/gui/blob/master/gui-lib/mred/private/wx/win32/tab-panel.rkt https://github.com/racket/gui/blob/master/gui-lib/mred/private/wx/cocoa/tab-panel.rkt
That makes sense to me, too.
One potential confusion with `==` as `equal?` is that `1` is not `equal?` to `1.0`. (That's one reason why `==` isn't currently `equal?`.) Maybe `==` could be numeric equality when...
> What if instead of making == mean numeric equality on numbers, we just made numbers read as exact decimals by default? That would definitely create surprises, given how much...