summaryrefslogtreecommitdiff
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
commit0c01821d4396d4d552311fcdf0ecdba56bf80617 (patch)
treeedc354980fa162707581d7e886f5334004582155
parent30d2be2101fb31ef819bee06ea6ba233f9fa83e3 (diff)
* parse.y (stmt): not to show same error messages twice.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@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 a6979d66bf..0fe84d5a19 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 05:26:27 2004 Dave Thomas <dave@pragprog.com>
* lib/rdoc/diagram.rb: Incorporate Micheal Neuman's
diff --git a/parse.y b/parse.y
index 8fa177a621..c4179fdc8b 100644
--- a/parse.y
+++ b/parse.y
@@ -486,7 +486,6 @@ stmt : kALIAS fitem {lex_state = EXPR_FNAME;} fitem
}
| lhs '=' command_call
{
- value_expr($3);
$$ = node_assign($1, $3);
}
| mlhs '=' command_call