summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-07-10 08:01:49 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-07-10 08:01:49 +0000
commit3d31020aeb6e59bd3b6bd12de00c854f570d4381 (patch)
tree64bd410107d8fd3b0ef6b644f11cf9888f837f7c /parse.y
parent91c7b7c465cd91d79a8809785490f77bbe97e631 (diff)
matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_4@823 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 0 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index 2d3ca54bab..a852d7f485 100644
--- a/parse.y
+++ b/parse.y
@@ -419,7 +419,6 @@ expr : mlhs '=' mrhs
}
| '!' command_call
{
- value_expr($2);
$$ = NEW_NOT(cond($2));
}
| arg
@@ -868,7 +867,6 @@ opt_call_args : none
call_args : command_call
{
- value_expr($1);
$$ = NEW_LIST($1);
}
| args ','