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

* ext/pathname/pathname.c (path_initialize): return a value.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28672 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-07-17 16:10:19 +00:00
parent fffb949e47
commit 17749e5168
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sun Jul 18 01:09:27 2010 Tanaka Akira <akr@fsij.org>
* ext/pathname/pathname.c (path_initialize): return a value.
Sun Jul 18 00:02:19 2010 Tanaka Akira <akr@fsij.org>
* ext/pathname/lib/pathname.rb (Pathname#initialize): removed.

View file

@ -33,6 +33,7 @@ path_initialize(VALUE self, VALUE arg)
set_strpath(self, str);
OBJ_INFECT(self, str);
return self;
}
void