diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 1e5859b852..78ffb1e37d 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,13 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-09-04 01:44 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/ChangeLog + * marked TODO as DONE and fixed typo + + * harbour/include/hbcomp.h + ! removed repeated declaration + 2009-09-03 23:54 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/contrib/hbwin/axcore.c ! removed the hack I added in previous commit with interface enumeration @@ -92,8 +99,8 @@ TODO: add support for multiple static functions with the same name in .HRB files - it's necessary to change used format so I'll - probably to that with .HRL support. Now when -gh switch is used - harbour and such functions exists then compiler generates: + probably do that with .HRL support. Now when -gh switch is used + and such functions exists then harbour compiler generates: Error E0002 Redefinition of procedure or function ... TODO: modify hbmk2 to pass @.clp files directly to Harbour compiler so it can compile them just like Clipper does and @@ -478,7 +485,7 @@ I haven't made one very important extension which strongly interacts with symbol table usage during compilation and can be source of really bad problems if I made sth wrong so I plan - to finish when above changes will have been tested. + to finish when above changes will have been tested. [DONE] 2009-08-29 11:21 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * contrib/hbssl/bio.c diff --git a/harbour/include/hbcomp.h b/harbour/include/hbcomp.h index 70f0726d42..44591539d8 100644 --- a/harbour/include/hbcomp.h +++ b/harbour/include/hbcomp.h @@ -212,7 +212,6 @@ extern void hb_compGenPushString( const char * szText, ULONG ulLen, HB_COMP_DECL extern void hb_compGenPushSymbol( const char * szSymbolName, BOOL bFunction, HB_COMP_DECL ); /* Pushes a symbol on to the Virtual machine stack */ extern void hb_compGenPushAliasedVar( const char *, BOOL, const char *, HB_LONG, HB_COMP_DECL ); extern void hb_compGenPopAliasedVar( const char *, BOOL, const char *, HB_LONG, HB_COMP_DECL ); -extern void hb_compGenPushFunRef( const char *, HB_COMP_DECL ); extern void hb_compGenPCode1( BYTE, HB_COMP_DECL ); /* generates 1 byte of pcode */ extern void hb_compGenPCode2( BYTE, BYTE, HB_COMP_DECL ); /* generates 2 bytes of pcode + flag for optional StrongType(). */ extern void hb_compGenPCode3( BYTE, BYTE, BYTE, HB_COMP_DECL ); /* generates 3 bytes of pcode + flag for optional StrongType() */