diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | parse.cxx | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2006-05-23 David Smith <dsmith@redhat.com> + + * parse.cxx (parse_for_loop): Corrected error message. + 2006-05-22 David Smith <dsmith@redhat.com> * elaborate.cxx (find_and_build): Fixed issue #2643. Wildcard @@ -1363,7 +1363,7 @@ parser::parse_for_loop () s->incr = parse_expr_statement (); t = next (); if (! (t->type == tok_operator && t->content == ")")) - throw parse_error ("expected ';'"); + throw parse_error ("expected ')'"); } // block |