summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-22 12:18:58 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-22 12:18:58 +0000
commitcb8d34855e7374f7a28b115f8d3a5e2020072f0e (patch)
treeb0a5d9b71c1cd68afc270e4cadae97fe01825bec /lib
parentbea93efc42f1e50e759888e53dbcd1ec624d3d80 (diff)
* lib/pathname.rb (Pathname#each_filename): use split_names properly.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/pathname.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pathname.rb b/lib/pathname.rb
index c81a70562b..87c496107c 100644
--- a/lib/pathname.rb
+++ b/lib/pathname.rb
@@ -492,7 +492,8 @@ class Pathname
# # yields "usr", "bin", and "ruby".
#
def each_filename # :yield: s
- split_names(@path).each {|filename| yield filename }
+ prefix, names = split_names(@path)
+ names.each {|filename| yield filename }
end
# Iterates over and yields a new Pathname object