Merge pull request #743 from iij/pr-fix-masgn

Fix disappearance of command_call in case of statement without parentheses
This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-01-16 01:42:33 -08:00
+1 -1
View File
@@ -1126,7 +1126,7 @@ stmt : keyword_alias fsym {p->lstate = EXPR_FNAME;} fsym
| command_asgn
| mlhs '=' command_call
{
$$ = new_masgn(p, $1, list1($3));
$$ = new_masgn(p, $1, $3);
}
| var_lhs tOP_ASGN command_call
{