1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-16 16:50:21 +02:00

core modules use (ice-9 binary-ports) instead of (rnrs io ports)

* module/language/assembly/compile-bytecode.scm:
* module/language/elisp/lexer.scm:
* module/web/request.scm:
* module/web/response.scm:
* module/web/server.scm:
* module/web/uri.scm: Use ice-9 binary-ports.
This commit is contained in:
Andy Wingo 2011-02-18 15:57:27 +01:00
parent dd0d987fbd
commit 6854c32480
6 changed files with 10 additions and 6 deletions

View file

@ -394,7 +394,7 @@
(paren-level 0))
(lambda ()
(if finished
(cons 'eof ((@ (rnrs io ports) eof-object)))
(cons 'eof ((@ (ice-9 binary-ports) eof-object)))
(let ((next (lex))
(quotation #f))
(case (car next)