* parse.y (f_arglist): should set command_start = Qtrue for

command body.  [ruby-talk:180648]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-02-20 17:12:56 +00:00
parent c24a0d897e
commit cb5021aef6
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Tue Feb 21 02:07:39 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* parse.y (f_arglist): should set command_start = Qtrue for
command body. [ruby-talk:180648]
Mon Feb 20 17:37:26 2006 Tanaka Akira <akr@m17n.org> Mon Feb 20 17:37:26 2006 Tanaka Akira <akr@m17n.org>
* mkconfig.rb: alias RbConfig for Config. * mkconfig.rb: alias RbConfig for Config.

View file

@ -2233,6 +2233,7 @@ f_arglist : '(' f_args opt_nl ')'
{ {
$$ = $2; $$ = $2;
lex_state = EXPR_BEG; lex_state = EXPR_BEG;
command_start = Qtrue;
} }
| f_args term | f_args term
{ {