(for-each-file): Do not recurse into "CVS" or "RCS" subdirs.
authorThien-Thi Nguyen <ttn@gnuvola.org>
Sat, 9 Feb 2002 22:42:54 +0000 (22:42 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Sat, 9 Feb 2002 22:42:54 +0000 (22:42 +0000)
test-suite/guile-test

index 05703c5..1d16368 100755 (executable)
                (cond
                 ((eof-object? entry) #f)
                 ((or (string=? entry ".")
-                     (string=? entry ".."))
+                     (string=? entry "..")
+                      (string=? entry "CVS")
+                      (string=? entry "RCS"))
                  (loop))
                 (else
                  (visit (string-append root "/" entry))