Port Scheme programs to Guile 1.8.
authorFredrik Tolf <fredrik@dolda2000.com>
Sun, 21 Oct 2007 20:15:44 +0000 (22:15 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Sun, 21 Oct 2007 20:15:44 +0000 (22:15 +0200)
Guile 1.8 requires the module (ice-9 rdelim) for the read-line
and write-line procedures.

lib/guile/autodl
lib/guile/chatlog
lib/guile/hubmgr

index ff21b84..b6498de 100755 (executable)
@@ -19,7 +19,7 @@
 ;  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 (use-modules (dolcon ui))
-(use-modules (ice-9 pretty-print))
+(use-modules (ice-9 pretty-print) (ice-9 rdelim))
 
 (define sr '())
 (define lastsearch 0)
index 950aa07..d66489e 100755 (executable)
@@ -19,7 +19,7 @@
 ;  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 (use-modules (dolcon ui))
-(use-modules (ice-9 pretty-print))
+(use-modules (ice-9 pretty-print) (ice-9 rdelim))
 
 (define fnetnodes '())
 
index 39b4f43..48c2b65 100755 (executable)
@@ -19,7 +19,7 @@
 ;  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 (use-modules (dolcon ui) (dolcon util))
-(use-modules (ice-9 format))
+(use-modules (ice-9 format) (ice-9 rdelim))
 
 (define max-hubs 6)
 (define hub-list '())