summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-07-01 06:51:28 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-07-01 06:51:28 +0000
commitd07e708d35dfa6b1a00da04770c29497d29f6b13 (patch)
tree558e4831fe6467363efb1e2c4f5ea890e513879c /parse.y
parentc7d499225b4d035c17acf774a3d53e20d6301df7 (diff)
matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@797 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y3
1 files changed, 3 insertions, 0 deletions
diff --git a/parse.y b/parse.y
index d0cdbffb14..2f530edb76 100644
--- a/parse.y
+++ b/parse.y
@@ -861,6 +861,9 @@ opt_call_args : none
| call_args opt_nl
call_args : command_call
+ {
+ $$ = NEW_LIST($1);
+ }
| args ','
{
$$ = $1;