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

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

View File

@ -1,3 +1,7 @@
Tue Feb 17 10:45:59 2004 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/syck/rubyext.c (syck_emitter_end_object): takes only one arg.
Tue Feb 17 07:48:21 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/rexml/encodings/SHIFT_JIS: wrong library name.

View File

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