From b2da60d1b6fc3a6095094e5819f68a0feee61ac7 Mon Sep 17 00:00:00 2001 From: Antonio Carlos Pantaglione Date: Wed, 2 Jul 2003 14:39:42 +0000 Subject: [PATCH] *** empty log message *** --- harbour/ChangeLog | 5 +++++ harbour/source/compiler/harbour.slx | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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;