summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar Andy Wingo2011-02-22 22:21:30 +0100
committerGravatar Andy Wingo2011-02-22 22:21:30 +0100
commita05d9a5df8ed76990eef2b9c17467db801472587 (patch)
tree343687825cb3faf3e24bd39bdc8d4694e976e52b
parent1636c96f9ff85de266e96b7724f07a44ec255924 (diff)
downloadtekuti-a05d9a5df8ed76990eef2b9c17467db801472587.tar.gz
tekuti-a05d9a5df8ed76990eef2b9c17467db801472587.zip
use ice-9 binary-ports
* tekuti/git.scm: * tekuti/request.scm: Use ice-9 binary-ports instead of (rnrs io ports).
-rw-r--r--tekuti/git.scm4
-rw-r--r--tekuti/request.scm4
2 files changed, 4 insertions, 4 deletions
diff --git a/tekuti/git.scm b/tekuti/git.scm
index b505345..d2aecb4 100644
--- a/tekuti/git.scm
+++ b/tekuti/git.scm
@@ -1,5 +1,5 @@
;; Tekuti
-;; Copyright (C) 2008, 2010 Andy Wingo <wingo at pobox dot com>
+;; Copyright (C) 2008, 2010, 2011 Andy Wingo <wingo at pobox dot com>
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
@@ -31,7 +31,7 @@
#:use-module (tekuti config)
#:use-module (tekuti match-bind)
#:use-module (rnrs bytevectors)
- #:use-module (rnrs io ports)
+ #:use-module (ice-9 binary-ports)
#:use-module ((srfi srfi-1) #:select (filter-map partition
delete-duplicates))
#:use-module (srfi srfi-34)
diff --git a/tekuti/request.scm b/tekuti/request.scm
index 1a84e34..0eaa7d8 100644
--- a/tekuti/request.scm
+++ b/tekuti/request.scm
@@ -1,5 +1,5 @@
;; Tekuti
-;; Copyright (C) 2008, 2010 Andy Wingo <wingo at pobox dot com>
+;; Copyright (C) 2008, 2010, 2011 Andy Wingo <wingo at pobox dot com>
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
@@ -31,7 +31,7 @@
#:use-module (web uri)
#:use-module (web request)
#:use-module (rnrs bytevectors)
- #:use-module (rnrs io ports)
+ #:use-module (ice-9 binary-ports)
#:use-module (ice-9 rdelim)
#:use-module (tekuti config)
#:use-module (tekuti base64)