1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Remove textual-ports include from (ice-9 read)

* module/ice-9/read.scm: We'll be loading this file early, so avoid
extraneous deps.
This commit is contained in:
Andy Wingo 2021-03-01 20:56:59 +01:00
parent 54adbd6f0f
commit c802ed4832

View file

@ -41,7 +41,6 @@
(define-module (ice-9 read)
#:use-module (srfi srfi-11)
#:use-module (ice-9 textual-ports)
#:use-module (rnrs bytevectors)
#:replace (read)
#:export (read-syntax))
@ -419,7 +418,7 @@
(next)
(lp (1+ i)))
(begin
(unget-char port ch)
(unread-char port ch)
#f))))))))
(define (read-false-or-srfi-4-vector)