From 36c02683d813ab86782fbc03923b2483696c68e9 Mon Sep 17 00:00:00 2001 From: eban Date: Thu, 21 Sep 2000 10:08:57 +0000 Subject: eban git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/find.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib') diff --git a/lib/find.rb b/lib/find.rb index a8dcea4f7..ce3e7068c 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 -- cgit