Fix a bug in (read-string) which affects non-special characters.
This commit is contained in:
parent
e1662ca4b8
commit
61b6a76205
|
|
@ -275,7 +275,9 @@
|
||||||
(next-char)
|
(next-char)
|
||||||
(cdr item))])]
|
(cdr item))])]
|
||||||
[else
|
[else
|
||||||
current-char]))
|
(let ([ch current-char])
|
||||||
|
(next-char)
|
||||||
|
ch)]))
|
||||||
|
|
||||||
(let ([ch (read-one-char)])
|
(let ([ch (read-one-char)])
|
||||||
(if ch
|
(if ch
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue