* 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/trunk@9974 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b3697c2dcb
commit
2507699bb8
@ -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 22:30:17 2006 Tanaka Akira <akr@m17n.org>
|
Mon Feb 20 22:30:17 2006 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
||||||
* mkconfig.rb: alias Config to RbConfig for compatibility.
|
* mkconfig.rb: alias Config to RbConfig for compatibility.
|
||||||
|
2
parse.y
2
parse.y
@ -3980,9 +3980,11 @@ f_arglist : '(' f_args rparen
|
|||||||
/*%%%*/
|
/*%%%*/
|
||||||
$$ = $2;
|
$$ = $2;
|
||||||
lex_state = EXPR_BEG;
|
lex_state = EXPR_BEG;
|
||||||
|
command_start = Qtrue;
|
||||||
/*%
|
/*%
|
||||||
$$ = dispatch1(paren, $2);
|
$$ = dispatch1(paren, $2);
|
||||||
lex_state = EXPR_BEG;
|
lex_state = EXPR_BEG;
|
||||||
|
command_start = Qtrue;
|
||||||
%*/
|
%*/
|
||||||
}
|
}
|
||||||
| f_args term
|
| f_args term
|
||||||
|
Loading…
x
Reference in New Issue
Block a user