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:
parent
ecb471f939
commit
1febd88c0f
1 changed files with 3 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue