diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-04-01 08:31:49 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-04-01 08:31:49 +0000 |
commit | de373b1b6cddf602cad483b7ede7b378666d837c (patch) | |
tree | a528c42a0de4c92f7dd999523f0b477d2f4faa6c /ext/racc/cparse/cparse.c | |
parent | 360453ce14e637e653005232aab50e6294a3fa48 (diff) | |
download | ruby-de373b1b6cddf602cad483b7ede7b378666d837c.tar.gz |
* io.c (rb_io_fptr_cleanup): need flush even when io will not be
closed.
* io.c (rb_io_initialize): was calling wrong function
rb_io_mode_flags().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2316 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/racc/cparse/cparse.c')
-rw-r--r-- | ext/racc/cparse/cparse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/racc/cparse/cparse.c b/ext/racc/cparse/cparse.c index 314e6a39c8..84d0af8295 100644 --- a/ext/racc/cparse/cparse.c +++ b/ext/racc/cparse/cparse.c @@ -253,6 +253,8 @@ racc_yyparse(parser, recv, mid, arg, indebug) return v->retval; } +static VALUE call_scaniter _((VALUE)); + static VALUE call_scaniter(data) VALUE data; |