Gary Baumgartner
Gary Baumgartner
[I originally opened this as an issue for `racket`, but it more clearly violates the docs for `typed/racket`.] Although for `racket` it doesn't seem explicitly forbidden, the `typed/racket` docs say:...
``` > ((lambda (x . xs) x)) ; #: arity mismatch; ; the expected number of arguments does not match the given number ; expected: at least 1 ; given:...
In the following there are no arrows between `a` and its import, but there are if the `only-in` is removed or the submodule is in the same file.
A small thing, from grepping the source for `procedure-rename` and `case-lamba` to see how they're handled if used to implement any of the api, since then one can't rely on...
It's a bit non-deterministic, but I can get it fairly reliably on Mac OS with: ISL previous chosen, launch DrRacket ``` Welcome to DrRacket, version 7.0 [3m]. Language: Intermediate Student;...
Example call with error below. The reason this error crept in might be because the term “color-scheme-name” is used in two ways: to refer to an entire color scheme, but...
To reproduce: with spell checking on, type `"goood"`, then delete an `o`, then click in front of the literal and ask for the next misspelled word. If people are using...
Change default to one that highlights nested structure, i.e. anything but the current "Basic grey". As the default for a new user, "Spring" has these advantages: - lightest (versus "Shades...
For non-`case-lambda` we get a report of expected arity ... ``` > ((lambda (x y) y) 1) ⋯ ; expected: 2 ⋯ > ((lambda (x y . z) y) 1)...
https://github.com/racket/drracket/blob/7ae87809bc2e7d5849f27dd3689f837cd4c7ade9/drracket/scribblings/tools/lang-tools.scrbl#L62-L72 `(map first (racket:get-color-prefs-table))` shows `'text` and `'hash-colon-keyword` are missing, which if included match the ten that have entries in the “Color / Racket” preferences tab. That table is hard-coded...