See ChangeLog entry 2002-06-26 19:20 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2002-06-26 23:19:39 +00:00
parent 9db8a528c6
commit 6d09d81ca2
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2002-06-26 19:20 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* source/pp/ppcore.c
! Increase the loop limit used to detect cyclic #defines from 20 to 750.
2002-06-26 18:41 UTC+0100 Ignacio Ortiz <ignacio@fivetech.com>
* source/rtl/tget.prg
!Fixed minus property value, did not work correctly

View File

@@ -1303,7 +1303,7 @@ int hb_pp_ParseExpression( char * sLine, char * sOutLine )
kolpass++;
if( kolpass > 20 && rezDef )
if( kolpass > 750 && rezDef )
{
hb_compGenError( hb_pp_szErrors, 'F', HB_PP_ERR_RECURSE, NULL, NULL );
break;