1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +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:
Andy Wingo 2021-03-05 20:35:22 +01:00
parent aaa8f201e9
commit 9897650f7a

View file

@ -407,7 +407,7 @@
(next)
(lp (1+ i)))
(begin
(unread-char port ch)
(unread-char ch port)
#f))))))))
(define (read-false-or-srfi-4-vector)