You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DrRacket mis-colors some character literals, likely due to a mismatch between the documentation on character literals and the implementation of the reader. See racket/racket#3506 and racket/racket#3507 for examples of character literals that fall outside the spec given in the document, but are considered valid.
So #\U000000AA should be colored as a character literal, but is currently colored as a literal followed by an identifier AA. #\71 is colored as a character literal but should be red since it is not valid.
The text was updated successfully, but these errors were encountered:
DrRacket mis-colors some character literals, likely due to a mismatch between the documentation on character literals and the implementation of the reader. See racket/racket#3506 and racket/racket#3507 for examples of character literals that fall outside the spec given in the document, but are considered valid.
So
#\U000000AA
should be colored as a character literal, but is currently colored as a literal followed by an identifierAA
.#\71
is colored as a character literal but should be red since it is not valid.The text was updated successfully, but these errors were encountered: