*** empty log message ***

This commit is contained in:
Antonio Carlos Pantaglione
2003-07-02 14:39:42 +00:00
parent a1f89fa38c
commit b2da60d1b6
2 changed files with 7 additions and 2 deletions

View File

@@ -8,6 +8,11 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2003-07-02 11:35 UTC-0300 Antonio Carlos Pantaglione <toninho@fwi.com.br>
* 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 <alinares@fivetechsoft.com>
* makefile.nt
* makefile.vc

View File

@@ -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;