summaryrefslogtreecommitdiff
path: root/lib/find.rb
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-21 10:08:57 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-21 10:08:57 +0000
commitca13525d5d52113e1ba0bb1711ab17a5215466be (patch)
treea39a76034fd5f98839ddbc88feaf72e49f657d14 /lib/find.rb
parentb35df6aae27214f831931c0174afb497218cf74e (diff)
eban
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/find.rb')
-rw-r--r--lib/find.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/find.rb b/lib/find.rb
index a8dcea4f71..ce3e7068c3 100644
--- a/lib/find.rb
+++ b/lib/find.rb
@@ -9,9 +9,11 @@
module Find
def find(*path)
+p ["find", path]
while file = path.shift
catch(:prune) {
yield file
+p ["find", file]
if File.lstat(file).directory? then
d = Dir.open(file)
begin