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)
|
||||
(cdr item))])]
|
||||
[else
|
||||
current-char]))
|
||||
(let ([ch current-char])
|
||||
(next-char)
|
||||
ch)]))
|
||||
|
||||
(let ([ch (read-one-char)])
|
||||
(if ch
|
||||
|
|
|
|||
Loading…
Reference in New Issue