mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
2000-06-01
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@721 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f33592b391
commit
ef1b455cc0
3 changed files with 9 additions and 2 deletions
|
|
@ -1,3 +1,7 @@
|
|||
Thu Jun 1 00:58:11 2000 Yukihiro Matsumoto <matz@netlab.co.jp>
|
||||
|
||||
* eval.c (mcall): args == nil if no argument given.
|
||||
|
||||
Wed May 31 04:06:41 2000 Wakou Aoyama <wakou@fsinet.or.jp>
|
||||
|
||||
* lib/cgi.rb: change: CGI#out()
|
||||
|
|
|
|||
3
eval.c
3
eval.c
|
|
@ -6028,6 +6028,9 @@ static VALUE
|
|||
mcall(args, method)
|
||||
VALUE args, method;
|
||||
{
|
||||
if (NIL_P(args)) {
|
||||
return method_call(0, 0, method);
|
||||
}
|
||||
if (TYPE(args) == T_ARRAY) {
|
||||
return method_call(RARRAY(args)->len, RARRAY(args)->ptr, method);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#define RUBY_VERSION "1.4.4"
|
||||
#define RUBY_RELEASE_DATE "2000-05-31"
|
||||
#define RUBY_RELEASE_DATE "2000-06-01"
|
||||
#define RUBY_VERSION_CODE 144
|
||||
#define RUBY_RELEASE_CODE 20000531
|
||||
#define RUBY_RELEASE_CODE 20000601
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue