diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 97518d7a35..e88b2a6afb 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,9 @@ +19991117-01:03 GMT+1 Victor Szel + * include/hbver.h + * Version number updated to reflect the deep changes. + * include/compiler.h + * Uncommented code removed + 19991116-21:55 GMT+1 Ryszard Glab * source/compiler/harbour.y diff --git a/harbour/include/compiler.h b/harbour/include/compiler.h index 05025bafd1..691156d794 100644 --- a/harbour/include/compiler.h +++ b/harbour/include/compiler.h @@ -193,10 +193,6 @@ extern void hb_xfree( void * pMem ); /* frees memory */ char * yy_strdup( char * p ); /* this will exit if there is not enough memory */ char * yy_strupr( char * p ); -#if 0 -static void __yy_memcpy( char * from, char * to, int count ); /* Bison prototype */ -#endif - extern USHORT FixSymbolPos( USHORT ); /* converts symbol's compile-time position into generation-time position */ extern PFUNCTION GetFuncall( char * szFunName ); /* locates a previously defined called function */ extern PVAR GetVar( PVAR pVars, USHORT wOrder ); /* returns a variable if defined or zero */ @@ -228,7 +224,8 @@ extern PCOMSYMBOL KillSymbol( PCOMSYMBOL ); /* releases all memory allocated typedef struct _ALIASID { char type; - union { + union + { int iAlias; char * szAlias; } alias; diff --git a/harbour/include/hbver.h b/harbour/include/hbver.h index 1ffe9881e9..dc59393237 100644 --- a/harbour/include/hbver.h +++ b/harbour/include/hbver.h @@ -84,10 +84,10 @@ extern int hb_day; #define hb_major 0 /* Major version number */ #define hb_minor 0 /* Minor version number */ -#define hb_revision "a" /* Revision letter */ +#define hb_revision "b" /* Revision letter */ #define hb_build 30 /* Build number */ #define hb_year 1999 /* Build year */ -#define hb_month 9 /* Build month */ -#define hb_day 30 /* Build day */ +#define hb_month 10 /* Build month */ +#define hb_day 16 /* Build day */ #endif /* HB_VER_H_ */