Ryan Kramer

Results 4 comments of Ryan Kramer

Just retested on Racket 8.2 CS to make sure the issue is still present. A test program: ``` #lang racket/gui (define my-frame% (class frame% (super-new) (define/override (on-subwindow-char receiver key-event) (let*...

Oops, I guess I simplified my example too much! Here is a better example: ``` #lang scribble/manual @(define-syntax-rule (show-rb x) (racketblock (if (= 1 x) 'yes 'no))) @(show-rb (cond [(=...

What if I make a struct that implements both `gen:dict` and `prop:procedure`? As long as that is possible, this seems to introduce a nasty ambiguity, unless you use a different...

Aha, apparently `.` is not an allowed character. Specifically `default.kramer` did not work, but `defaultkramer` did work.