1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/find.rb: merge from 1.7: rescue Errno::EACCES as well.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1562 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2001-07-03 15:13:30 +00:00
parent c97c62a594
commit a58a945e96
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Wed Jul 4 00:12:37 2001 Akinori MUSHA <knu@iDaemons.org>
* lib/find.rb: merge from 1.7: rescue Errno::EACCES as well.
Wed Jul 4 00:09:16 2001 Akinori MUSHA <knu@iDaemons.org>
* lib/mathn.rb: merge from 1.7: add Rational#inspect().

View file

@ -32,7 +32,7 @@ module Find
d.close
end
end
rescue Errno::ENOENT
rescue Errno::ENOENT, Errno::EACCES
end
end
end