diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-17 09:29:59 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-17 09:29:59 +0000 |
commit | 95439d074129ee930d360666f0549be3f413ca61 (patch) | |
tree | 7fba507cac00f5d8dcafb3fe026265bfe76a5d15 | |
parent | 83fa0928d735f7076a7b755ff150cdec741a32ed (diff) |
* parse.y (stmt): not to show same error messages twice.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6660 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | parse.y | 1 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Sat Jul 17 18:29:07 2004 Nobuyoshi Nakada <[email protected]> + + * parse.y (stmt): not to show same error messages twice. + Sat Jul 17 14:18:11 2004 Yukihiro Matsumoto <[email protected]> * string.c (rb_str_match_m): String#match should also take @@ -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 |