1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

(for-each-file): Do not recurse into "CVS" or "RCS" subdirs.

This commit is contained in:
Thien-Thi Nguyen 2002-02-09 22:42:54 +00:00
parent ecb471f939
commit 1febd88c0f

View file

@ -122,7 +122,9 @@
(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))