2000-06-25 03:35 UTC-0800 Ron Pinkas <Ron@Profit-Master.com>

* source/compiler/hbgenerr.c
     ! Fixed line number when in <eol> was 1 too short.

   * make_b32.bat
     ! Removed -i (ignore erros).
This commit is contained in:
Ron Pinkas
2000-06-25 10:38:11 +00:00
parent ade872095c
commit 057aabe723
3 changed files with 15 additions and 6 deletions

View File

@@ -1,5 +1,11 @@
2000-06-25 10:40 UTC+0100 Ryszard Glab <rglab@imid.med.pl>
2000-06-25 03:35 UTC-0800 Ron Pinkas <Ron@Profit-Master.com>
* source/compiler/hbgenerr.c
! Fixed line number when in <eol> was 1 too short.
* make_b32.bat
! Removed -i (ignore erros).
2000-06-25 10:40 UTC+0100 Ryszard Glab <rglab@imid.med.pl>
*tests/onidle.prg
*added missing demo file of idle states tasks
@@ -8,7 +14,7 @@
*Small change to hb___CompressMultipleFile()
2000-06-24 22:10 GMT -3 Luiz Rafael Culik <Culik@sl.conex.net>
+contrib/samples/makefile.bc
+contrib/samples/makefile.bc
*Makefile for samples.lib for borland compilers
*contrib/hbzlib/makefile.bc
@@ -17,7 +23,7 @@
*contrib/hbzlib/zlibapi.c
%some enhacements to hb___CompressMultipleFile()
*contrib/hbzlib/test.prg
*contrib/hbzlib/test.prg
*added test to demostrate the changes
*contrib/hbzlib/doc/zip.txt

View File

@@ -8,7 +8,7 @@ if "%1" == "CLEAN" goto CLEAN
:BUILD
make -i -fmakefile.bc %1 %2 %3 > make_b32.log
make -fmakefile.bc %1 %2 %3 > make_b32.log
if errorlevel 1 goto BUILD_ERR
:BUILD_OK

View File

@@ -127,8 +127,11 @@ void hb_compGenError( char * szErrors[], char cPrefix, int iError, char * szErro
if( cPrefix != 'F' && hb_comp_bError )
return;
if( hb_comp_files.pLast && hb_comp_files.pLast->szFileName )
printf( "\r%s(%i) ", hb_comp_files.pLast->szFileName, hb_comp_files.pLast->iLine - 1 );
/*
printf( "Eol: %i >%s<\n", hb_comp_EOL, yytext );
*/
printf( "\r%s(%i) ", hb_comp_szFile, hb_comp_iCompiled + ( yytext[0] == '\n' ? 1: 0 ) );
printf( "Error %c%04i ", cPrefix, iError );
printf( szErrors[ iError - 1 ], szError1, szError2 );