Unicode characters are escaped in pretty-printed Text
values #1943
Closed
Description
Describe the bug
The format
command escapes the Unicode character ∀
.
To Reproduce
Type in REPL:
> tydef L a = rec l. a * 1 end
> format {(undefined) : L a}
it : Text = "{undefined : \8704 a. L a}"
Expected behavior
The format
command should show the ASCII forall
or Unicode ∀
.
Additional context
This could be related to escaped characters in strings, like \n
.
Discovered while testing #1928 (comment).