Results 25 comments of Spencer Florence

An interesting corner case here: ``` > (variable-not-in '|1| '|1|) '|12| ``` Which is the behavior I would expect (if a tad of a silly example).

Would it make sense to disable tracing for the menu-based student languages? If these problems don't exist in the #lang versions we can avoid this and #44 until those are...

From a prior discussion with robby, it sounds like we would at least like to move the invoking of the `error-display-handler` and `test-judgment-does-not-hold` over to redex proper. I would guess...

More odd behavior related to this: ``` > (void? (set! x 1)) #false ```

The issue here is that one of the voids prints as `(void)` and the other void doesn't print at all. So: ``` > (when false #f) > (set! x 0)...

I'm running macOS 10.14.13, running a Racket head from a few days ago.

This is not a regression from 7.5. The exact UTF-8 bytestring I'm using for is `"p̂"` is `#"p\314\202"`.

It might be. From what I can tell drracket always uses `combine` as `#f` (judging by grepping the framework and drracket codebase) An interesting note some fonts have special liggatures...

this issue might be related to this pango bug (https://bugzilla.gnome.org/show_bug.cgi?id=584160)? Specifically this comment https://bugzilla.gnome.org/show_bug.cgi?id=584160#c75 makes me think so.

This won't work unfortunately: the expander runs on a top level module, so cover doesn't get access until all submodules and the top module have been expanded. For coverage to...