mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* marshal.c (w_object): marshal_dump should not take any
argument. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4233 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8b97353bf2
commit
d468497778
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Wed Jul 30 16:17:06 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* marshal.c (w_object): marshal_dump should not take any
|
||||||
|
argument.
|
||||||
|
|
||||||
Wed Jul 30 15:54:04 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
Wed Jul 30 15:54:04 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||||
|
|
||||||
* ext/openssl/ossl_ssl.c (ossl_sslctx_initialize): should initialize
|
* ext/openssl/ossl_ssl.c (ossl_sslctx_initialize): should initialize
|
||||||
|
|
|
@ -483,7 +483,7 @@ w_object(obj, arg, limit)
|
||||||
if (rb_respond_to(obj, s_mdump)) {
|
if (rb_respond_to(obj, s_mdump)) {
|
||||||
VALUE v;
|
VALUE v;
|
||||||
|
|
||||||
v = rb_funcall(obj, s_mdump, 1, INT2NUM(limit));
|
v = rb_funcall(obj, s_mdump, 0, 0);
|
||||||
w_class(TYPE_USRMARSHAL, obj, arg);
|
w_class(TYPE_USRMARSHAL, obj, arg);
|
||||||
w_object(v, arg, limit);
|
w_object(v, arg, limit);
|
||||||
if (ivtbl) w_ivar(ivtbl, &c_arg);
|
if (ivtbl) w_ivar(ivtbl, &c_arg);
|
||||||
|
|
Loading…
Reference in a new issue