mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 19:50:24 +02:00
(for-each-file): Do not recurse into "CVS" or "RCS" subdirs.
This commit is contained in:
parent
ecb471f939
commit
1febd88c0f
1 changed files with 3 additions and 1 deletions
|
@ -122,7 +122,9 @@
|
||||||
(cond
|
(cond
|
||||||
((eof-object? entry) #f)
|
((eof-object? entry) #f)
|
||||||
((or (string=? entry ".")
|
((or (string=? entry ".")
|
||||||
(string=? entry ".."))
|
(string=? entry "..")
|
||||||
|
(string=? entry "CVS")
|
||||||
|
(string=? entry "RCS"))
|
||||||
(loop))
|
(loop))
|
||||||
(else
|
(else
|
||||||
(visit (string-append root "/" entry))
|
(visit (string-append root "/" entry))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue