* boot-9.scm, rdelim.scm: Use "'()" instead of "()" in all places
authorMarius Vollmer <mvo@zagadka.de>
Sat, 3 Mar 2001 14:58:22 +0000 (14:58 +0000)
committerMarius Vollmer <mvo@zagadka.de>
Sat, 3 Mar 2001 14:58:22 +0000 (14:58 +0000)
where the empty list is meant.

ice-9/boot-9.scm
ice-9/rdelim.scm

index efd3308..2ba3878 100644 (file)
 \f
 (define-module (guile))
 
-(append! %load-path (cons "." ()))
+(append! %load-path (cons "." '()))
 
index 9d961a0..732163e 100644 (file)
@@ -95,7 +95,7 @@
         (handle-delim (if (pair? args)
                           (car args)
                           'trim)))
-    (let loop ((substrings ())
+    (let loop ((substrings '())
               (total-chars 0)
               (buf-size 100))          ; doubled each time through.
       (let* ((buf (make-string buf-size))