ChangeLog 20000406-10:55

This commit is contained in:
Ryszard Glab
2000-04-06 09:35:45 +00:00
parent 9be3483e79
commit d9e90ce46e
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
20000406-10:55 GMT+1 Ryszard Glab <rglab@imid.med.pl>
*source/compiler/harbour.y
* the parser resumes parsing after 'parse errors' (parsing errors
are non-fatal now)
20000406-08:52 GMT+1 Victor Szakats <info@szelvesz.hu>
* config/dos/dir.cf

View File

@@ -252,6 +252,7 @@ Source : Crlf
| Source FieldsDef
| Source MemvarDef
| Source Line
| Source error Crlf { yyclearin; }
;
Line : LINE NUM_INTEGER LITERAL Crlf
@@ -1478,9 +1479,9 @@ int hb_compYACCMain( char * szName )
void yyerror( char * s )
{
if( yytext[ 0 ] == '\n' )
hb_compGenError( hb_comp_szErrors, 'F', HB_COMP_ERR_YACC, s, "<eol>" );
hb_compGenError( hb_comp_szErrors, 'E', HB_COMP_ERR_YACC, s, "<eol>" );
else
hb_compGenError( hb_comp_szErrors, 'F', HB_COMP_ERR_YACC, s, yytext );
hb_compGenError( hb_comp_szErrors, 'E', HB_COMP_ERR_YACC, s, yytext );
}