summaryrefslogtreecommitdiffstats
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
commit952ee19cbc44b3b969a086a7cf8bb8c3ccc16f4b (patch)
tree558e4831fe6467363efb1e2c4f5ea890e513879c /parse.y
parent70f141e112b62e985e86edc4a51c1f81131182fe (diff)
downloadruby-952ee19cbc44b3b969a086a7cf8bb8c3ccc16f4b.tar.gz
ruby-952ee19cbc44b3b969a086a7cf8bb8c3ccc16f4b.tar.xz
ruby-952ee19cbc44b3b969a086a7cf8bb8c3ccc16f4b.zip
matz
git-svn-id: http://svn.ruby-lang.org/repos/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 d0cdbffb1..2f530edb7 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;