rev 577 - trunk/src
SVN User <[email protected]> Fri, 04 Jun 2004 18:11:11 -0400
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mark
Date: 2004-06-04 18:11:08 -0400 (Fri, 04 Jun 2004)
New Revision: 577
Modified:
trunk/src/prothon.y
Log:
fixed mismatched parens in prothon.y
Modified: trunk/src/prothon.y
===================================================================
--- trunk/src/prothon.y 2004-06-04 22:00:54 UTC (rev 576)
+++ trunk/src/prothon.y 2004-06-04 22:11:08 UTC (rev 577)
@@ -994,7 +994,7 @@
lvalp->str_type = new_string_n_obj((((parse_state*) yylex_param)->ist), str_ptr, str_index-1);
#ifdef TRACE_PARSER
if (trace_parser){
- fprintf((((parse_state*) yylex_param)->debug_stream, "\"%s\"\n",str_ptr);
+ fprintf(((parse_state*) yylex_param)->debug_stream, "\"%s\"\n",str_ptr);
}
#endif
return STRING;
@@ -1160,7 +1160,7 @@
lvalp->str_type = new_string_n_obj((((parse_state*) yylex_param)->ist), str_ptr, str_index-1);
#ifdef TRACE_PARSER
if (trace_parser){
- fprintf((((parse_state*) yylex_param)->debug_stream, "\"%s\"\n",str_ptr);
+ fprintf(((parse_state*) yylex_param)->debug_stream, "\"%s\"\n",str_ptr);
}
#endif
return LABEL;