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

* eval.c (bmcall): arguments should be an array.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3275 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2003-01-02 02:01:25 +00:00
parent 4d676cf76f
commit ed506c07d1
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Thu Jan 02 11:01:20 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* eval.c (bmcall): arguments should be an array.
Wed Jan 1 18:18:45 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* configure.in: better DJGPP support. add GNUmakefile.

1
eval.c
View file

@ -7127,6 +7127,7 @@ static VALUE
bmcall(args, method)
VALUE args, method;
{
args = mrhs_to_avalue(args);
return method_call(RARRAY(args)->len, RARRAY(args)->ptr, method);
}