diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-17 01:51:39 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-17 01:51:39 +0000 |
| commit | 9446eb7171e5db56a054f4cfc7972f67cf6b463e (patch) | |
| tree | 46cb13627065c0d60e4dd486da5769ff417f5038 | |
| parent | 905981c757a87c9d46f941d9cb941b55de9150dd (diff) | |
| download | ruby-9446eb7171e5db56a054f4cfc7972f67cf6b463e.tar.gz ruby-9446eb7171e5db56a054f4cfc7972f67cf6b463e.tar.xz ruby-9446eb7171e5db56a054f4cfc7972f67cf6b463e.zip | |
* ext/syck/rubyext.c (syck_emitter_end_object): takes only one arg.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@5744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/syck/rubyext.c | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -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 diff --git a/ext/syck/rubyext.c b/ext/syck/rubyext.c index ecb39c344..012d727ce 100644 --- a/ext/syck/rubyext.c +++ b/ext/syck/rubyext.c @@ -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; |
