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
Using invalid quotation that is part of R7RS spec doesn't work anymore.
(list-ref ’(a b c d)
(exact (round1.8)))
;; ==> Error: You're using an invalid Unicode quote character. Run: (set-special! "’" 'quote) to allow the use of this type of quote
(set-special! "’"'quote)
;; ==> Parser: expected parenthesis but eof found
And the REPL is totally bricked.
TODO:
document the usage of ’ from R7RS spec.
The text was updated successfully, but these errors were encountered:
When syntax extension throw an error inside an S-Expression,
the state inside the parser was not reset, and it was
throwing an error about unbalanced parentheses.
The problem is with any error from Parser in the middle of S-Expression. The reason was that when parser gets a new expression in REPL, the state was not reset, so it was throwing an error about unbalanced parentheses.
Using invalid quotation that is part of R7RS spec doesn't work anymore.
And the REPL is totally bricked.
TODO:
’
from R7RS spec.The text was updated successfully, but these errors were encountered: