* 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:
matz 2006-02-20 17:12:56 +00:00
Родитель b3697c2dcb
Коммит 2507699bb8
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -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.

Просмотреть файл

@ -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