mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-11 22:31:12 +02:00
Fix reading of #true / #false
* module/ice-9/read.scm (%read): Fix bad argument order to unread-char.
This commit is contained in:
parent
aaa8f201e9
commit
9897650f7a
1 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@
|
||||||
(next)
|
(next)
|
||||||
(lp (1+ i)))
|
(lp (1+ i)))
|
||||||
(begin
|
(begin
|
||||||
(unread-char port ch)
|
(unread-char ch port)
|
||||||
#f))))))))
|
#f))))))))
|
||||||
|
|
||||||
(define (read-false-or-srfi-4-vector)
|
(define (read-false-or-srfi-4-vector)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue