summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-01-23 06:50:10 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-01-23 06:50:10 +0000
commit5799eb9d5efbfe162abc29328fb2c386827a8ca0 (patch)
tree94c4e2e5f49f64b8a761d74023312590ff639763 /parse.y
parent37aa8eeb0b271635e5daac638abb56941bb53f6c (diff)
* parse.y (arg): missing arguments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3401 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index 8d34c153d2..3ad879db1f 100644
--- a/parse.y
+++ b/parse.y
@@ -1028,11 +1028,11 @@ arg : lhs '=' arg
}
| tUMINUS_NUM tINTEGER tPOW arg
{
- $$ = call_op(call_op($2, tPOW, 1, $4), tUMINUS);
+ $$ = call_op(call_op($2, tPOW, 1, $4), tUMINUS, 0, 0);
}
| tUMINUS_NUM tFLOAT tPOW arg
{
- $$ = call_op(call_op($2, tPOW, 1, $4), tUMINUS);
+ $$ = call_op(call_op($2, tPOW, 1, $4), tUMINUS, 0, 0);
}
| tUPLUS arg
{