diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 604f223cc8..5764678eda 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2002-06-26 19:20 UTC-0400 David G. Holm + * 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 * source/rtl/tget.prg !Fixed minus property value, did not work correctly diff --git a/harbour/source/pp/ppcore.c b/harbour/source/pp/ppcore.c index a1eae84a94..be412fbc8d 100644 --- a/harbour/source/pp/ppcore.c +++ b/harbour/source/pp/ppcore.c @@ -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;