зеркало из https://github.com/github/ruby.git
* gc.c (os_obj_of): returns an enumerator if no block given. based on
a patch from Yugui <yugui AT yugui.sakura.ne.jp>. [ruby-dev:32828] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14751 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
76e845505a
Коммит
0d7405b69f
|
@ -1,3 +1,8 @@
|
|||
Fri Dec 28 13:07:31 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* gc.c (os_obj_of): returns an enumerator if no block given. based on
|
||||
a patch from Yugui <yugui AT yugui.sakura.ne.jp>. [ruby-dev:32828]
|
||||
|
||||
Fri Dec 28 11:46:04 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* tool/ytab.sed: skip yydestruct hack unless yymsg exists, for bison
|
||||
|
|
3
gc.c
3
gc.c
|
@ -1798,7 +1798,7 @@ os_obj_of(VALUE of)
|
|||
*/
|
||||
|
||||
static VALUE
|
||||
os_each_obj(int argc, VALUE *argv)
|
||||
os_each_obj(int argc, VALUE *argv, VALUE os)
|
||||
{
|
||||
VALUE of;
|
||||
|
||||
|
@ -1806,6 +1806,7 @@ os_each_obj(int argc, VALUE *argv)
|
|||
if (rb_scan_args(argc, argv, "01", &of) == 0) {
|
||||
of = 0;
|
||||
}
|
||||
RETURN_ENUMERATOR(os, 1, &of);
|
||||
return os_obj_of(of);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче