summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-17 09:29:59 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-17 09:29:59 +0000
commitf2b5171cbdb0f7699142c1707de6442963706004 (patch)
tree7fba507cac00f5d8dcafb3fe026265bfe76a5d15
parent74271c786adc78b3f657dd146828e0165f511f88 (diff)
downloadruby-f2b5171cbdb0f7699142c1707de6442963706004.tar.gz
ruby-f2b5171cbdb0f7699142c1707de6442963706004.tar.xz
ruby-f2b5171cbdb0f7699142c1707de6442963706004.zip
* parse.y (stmt): not to show same error messages twice.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6660 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--parse.y1
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c8de569c..3a31c293a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Jul 17 18:29:07 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * parse.y (stmt): not to show same error messages twice.
+
Sat Jul 17 14:18:11 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
* string.c (rb_str_match_m): String#match should also take
diff --git a/parse.y b/parse.y
index 121251ce1..adfd7eeed 100644
--- a/parse.y
+++ b/parse.y
@@ -496,7 +496,6 @@ stmt : kALIAS fitem {lex_state = EXPR_FNAME;} fitem
}
| lhs '=' command_call
{
- value_expr($3);
$$ = node_assign($1, $3);
}
| mlhs '=' command_call