- fixed minor bug when reading an identifier from a port with an
invalid unicode decoding sequence.
This commit is contained in:
parent
9c60997b02
commit
a9da844a46
|
@ -113,7 +113,8 @@
|
|||
(cond
|
||||
[(eof-object? c) ls]
|
||||
[(subsequent? c)
|
||||
(tokenize-identifier (cons (read-char p) ls) p)]
|
||||
(read-char p)
|
||||
(tokenize-identifier (cons c ls) p)]
|
||||
[(delimiter? c)
|
||||
ls]
|
||||
[(char=? c #\\)
|
||||
|
|
|
@ -1 +1 @@
|
|||
1660
|
||||
1661
|
||||
|
|
Loading…
Reference in New Issue