diff --git a/harbour/ChangeLog b/harbour/ChangeLog new file mode 100644 index 0000000000..d304733abc --- /dev/null +++ b/harbour/ChangeLog @@ -0,0 +1,53 @@ +Wed May 05 09:19:23 1999 Gonzalo A. Diethelm + + * Removed include/Set.ch in preparation to move it to + include/set.ch; same thing for tests/working/block2.PRG. + * Added ChangeLog. + * source/pp/pragma.c + * contrib/dot/pp_harb.ch + * tests/inline_c.prg + * STOPDUMP renamed as ENDDUMP (with Ron permission) + +2001-12-21 08:40 UTC-0300 Luiz Rafael Culik + * utils/hbmake/hbmake.prg + * small fix + +2001-12-21 07:50 UTC-0300 Luiz Rafael Culik + * source/rtl/filesys.c + * hb_fsmkdir,hb_fsChdir,hb_fsRmdir,hb_fsDelete,hb_fsRename,hb_fsCurdirBuff() + now use Win32 API calls + * utils/hbmake/hbmake.prg + ! Disabled profile + * utils/hbmake/hbmutils.prg + * An small clean up + * ChangeLog + * Renamed to ChangeLog.012 and started an new one +2006-02-15 13:50 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/vm/hvm.c + ! fixed memory leak I introduced changing Ryszard modifications + + need such functionality yet + + harbour/ChangeLog.015 + * harbour/source/vm/debug.c + + * harbour/harbour.spec + * harbour/bin/hb-func.sh + * some modification in xhb* scripts building - adding passing + predefined compiler and linker switches + * harbour/source/vm/hvm.c + * minor code cleanup + +2006-09-03 18:55 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/include/hbapicls.h + * harbour/source/vm/classes.c + * harbour/source/vm/hvm.c + * harbour/tests/overload.prg + + added support for overloading [] in assignment operation + +2006-09-03 16:30 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/ChangeLog + + harbour/ChangeLog.016 + * new ChangeLog file created + * harbour/include/hbver.h + * updated version number to 0.47.0 + * tagged CVS as build47 diff --git a/harbour/tests/working/block2.PRG b/harbour/tests/working/block2.PRG deleted file mode 100644 index eee3f525a7..0000000000 --- a/harbour/tests/working/block2.PRG +++ /dev/null @@ -1,16 +0,0 @@ -// CodeBlocks management - -function Main() - - local bBlock := GenBlock() - - Eval( bBlock, "I am a ", "codeblock" ) - - QOut( "ok" ) - -return nil - -function GenBlock() - -return { | c, d | QOut( c + d ) } -