mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
2 changed files with 7 additions and 0 deletions
|
@ -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>
|
||||
|
||||
* mkconfig.rb: alias Config to RbConfig for compatibility.
|
||||
|
|
2
parse.y
2
parse.y
|
@ -3980,9 +3980,11 @@ f_arglist : '(' f_args rparen
|
|||
/*%%%*/
|
||||
$$ = $2;
|
||||
lex_state = EXPR_BEG;
|
||||
command_start = Qtrue;
|
||||
/*%
|
||||
$$ = dispatch1(paren, $2);
|
||||
lex_state = EXPR_BEG;
|
||||
command_start = Qtrue;
|
||||
%*/
|
||||
}
|
||||
| f_args term
|
||||
|
|
Loading…
Reference in a new issue