Fix disappearance of command_call in case of statement without parentheses.

This commit is contained in:
Takashi Sogabe
2013-01-16 14:43:37 +09:00
parent 98d364e4a6
commit f0766e3632
+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
{