diff src/parse.y @ 4219:23d06c9e1edd

[project @ 2002-12-06 21:29:17 by jwe]
author jwe
date Fri, 06 Dec 2002 21:29:19 +0000
parents fa3482b34599
children ccfdb55c8156
line wrap: on
line diff
--- a/src/parse.y	Thu Dec 05 04:43:20 2002 +0000
+++ b/src/parse.y	Fri Dec 06 21:29:19 2002 +0000
@@ -2786,7 +2786,7 @@
 {
   if (lexer_flags.defining_func && Vwarn_missing_semicolon)
     {
-      tree_statement *tmp = t->rear();
+      tree_statement *tmp = t->back();
 
       if (tmp->is_expression ())
 	warning ("missing semicolon near line %d, column %d in file `%s'",
@@ -2803,7 +2803,7 @@
     {
     case ';':
       {
-	tree_statement *tmp = list->rear ();
+	tree_statement *tmp = list->back ();
 	tmp->set_print_flag (0);
       }
       break;