From: Fredrik Tolf Date: Sun, 21 Oct 2007 20:15:44 +0000 (+0200) Subject: Port Scheme programs to Guile 1.8. X-Git-Tag: 1.1~51 X-Git-Url: http://dolda2000.com/gitweb/?p=doldaconnect.git;a=commitdiff_plain;h=275514c05a8122e0a1bf66df95b5f8f7ae6cbcdb Port Scheme programs to Guile 1.8. Guile 1.8 requires the module (ice-9 rdelim) for the read-line and write-line procedures. --- diff --git a/lib/guile/autodl b/lib/guile/autodl index ff21b84..b6498de 100755 --- a/lib/guile/autodl +++ b/lib/guile/autodl @@ -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) diff --git a/lib/guile/chatlog b/lib/guile/chatlog index 950aa07..d66489e 100755 --- a/lib/guile/chatlog +++ b/lib/guile/chatlog @@ -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 '()) diff --git a/lib/guile/hubmgr b/lib/guile/hubmgr index 39b4f43..48c2b65 100755 --- a/lib/guile/hubmgr +++ b/lib/guile/hubmgr @@ -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 '())