diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 89d3960f10..4a3cf79ef6 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2003-07-02 11:35 UTC-0300 Antonio Carlos Pantaglione + * source/compiler/harbour.slx + ! Add 'static' in definition of hb_comp_SLX_InterceptAction and + hb_comp_SLX_CustomAction. + 2003-07-02 09:25 UTC+0100 Antonio Linares * makefile.nt * makefile.vc diff --git a/harbour/source/compiler/harbour.slx b/harbour/source/compiler/harbour.slx index bf0b6f92b9..d9f73373e9 100644 --- a/harbour/source/compiler/harbour.slx +++ b/harbour/source/compiler/harbour.slx @@ -499,7 +499,7 @@ LANGUAGE_RULES_ARE { #define IF_BELONG_LEFT(chr) if( iLastToken == IDENTIFIER || iLastToken == SELF || iLastToken == ']' || iLastToken == MACROVAR || iLastToken == MACROTEXT || iLastToken == ')' || iLastToken == '}' || iLastToken == WANTS_EOL || iLastToken == WANTS_ID || iLastToken == WANTS_VAR || iLastToken == DECLARE || iLastToken == FIELD || /*iLastToken == SELF ||*/ iLastToken == QSELF || iLastToken == IIF || iLastToken == PROCREQ ) /* Support Functions. */ -int hb_comp_SLX_InterceptAction( int iRet, char *sToken ) +static int hb_comp_SLX_InterceptAction( int iRet, char *sToken ) { extern char *yytext; extern int yyleng; @@ -782,7 +782,7 @@ long hb_comp_SLX_Hex2L( char* sHex ) return lSum; } -int hb_comp_SLX_CustomAction( int x, int aiHold[], int *ptr_iHold, BOOL *ptr_bIgnoreWords, int iLastToken, char *sToken, char *s_szBuffer ) +static int hb_comp_SLX_CustomAction( int x, int aiHold[], int *ptr_iHold, BOOL *ptr_bIgnoreWords, int iLastToken, char *sToken, char *s_szBuffer ) { extern BOOL hb_pp_bInline;