guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-www http.scm


From: Marius Vollmer
Subject: guile/guile-www http.scm
Date: Sun, 04 Feb 2001 10:11:24 -0800

CVSROOT:        /cvs
Module name:    guile
Changes by:     Marius Vollmer <address@hidden> 01/02/04 10:11:24

Modified files:
        guile-www      : http.scm 

Log message:
        * http.scm: Use (ice-9 rdelim) if `read-line' not defined.  Thanks
        to Thien-Thi Nguyen.

CVSWeb URLs:
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-www/http.scm.diff?r1=1.6&r2=1.7

Patches:
Index: guile/guile-www/http.scm
diff -u guile/guile-www/http.scm:1.6 guile/guile-www/http.scm:1.7
--- guile/guile-www/http.scm:1.6        Mon Oct 20 15:17:22 1997
+++ guile/guile-www/http.scm    Sun Feb  4 10:11:24 2001
@@ -23,6 +23,12 @@
 ;;;; Boston, MA 02111-1307 USA
 ;;;; 
 
+;;; Compatibility
+
+(or (defined? 'read-line)
+    (use-modules (ice-9 rdelim)))
+
+
 ;;; Variables that affect HTTP usage.
 
 (define-public http:version "HTTP/1.0")  ; bump up to 1.1 when ready



reply via email to

[Prev in Thread] Current Thread [Next in Thread]