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

* ext/syck/rubyext.c (syck_emitter_end_object): takes only one arg.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2004-02-17 01:51:39 +00:00
parent 1ce8c1378b
commit f4e0f00e47
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Tue Feb 17 10:51:23 2004 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/syck/rubyext.c (syck_emitter_end_object): takes only one arg.
Tue Feb 17 01:35:28 2004 Tanaka Akira <akr@m17n.org>
* eval.c (rb_eval): care that another thread replace NODE_DREGX_ONCE

View file

@ -1324,11 +1324,11 @@ syck_emitter_start_object( self, oid )
}
/*
* YAML::Syck::Emitter.end_object( object_id )
* YAML::Syck::Emitter.end_object
*/
VALUE
syck_emitter_end_object( self, oid )
VALUE self, oid;
syck_emitter_end_object( self )
VALUE self;
{
SyckEmitter *emitter;