19990605-00:22 CET Eddie Runia
  * tests/broken/exittest.prg; tests/broken/codebloc.prg
    removed, since they work !
  * tests/working/exittest.prg; tests/working/codebl.prg
    added (renamed codebloc to avoid conflict)

19990605-00:00 CET Eddie Runia
  * tests/working/runner.c
    PITEM -> PHB_ITEM

19990604-17:35 EDT David G. Holm <dholm@jsd-llc.com>
  * include/hbsetup.h
    - Added USE_GTAPI, which defaults to NOT being defined

19990604-17:00 EDT David G. Holm <dholm@jsd-llc.com>
  In each of the following modules, all occurrences of ITEM and PITEM
  were changed to HB_ITEM and PHB_ITEM. Any additional changes are
  listed following the applicable modules:
  * include/ctoharb.h
  * include/extend.h
  * include/itemapi.h
    - Also added #define ITEM PHB_ITEM
  * source/rtl/arrays.c
  * source/rtl/classes.c
  * source/rtl/codebloc.c
  * source/rtl/console.c
  * source/rtl/dates.c
  * source/rtl/descend.c
  * source/rtl/errorapi.c
  * source/rtl/extend.c
  * source/rtl/files.c
  * source/rtl/itemapi.c
  * source/rtl/math.c
  * source/rtl/set.c
  * source/rtl/strcmp.c
  * source/rtl/strings.c
  * source/rtl/transfrm.c
  * source/tools/debug.c
  * source/tools/hb_f.c
  * source/tools/io.c
  * source/tools/stringsx.c
  * source/vm/dynsym.c
  * source/vm/hvm.c

19990604-13:05 EDT David G. Holm <dholm@jsd-llc.com>
  * source/vm/hvm.c
    - Corrected ForTest() to use the correct decimal count

19990604-12:35 EDT David G. Holm <dholm@jsd-llc.com>
  * source/rtl/dates.c
    - Corrected HARBOUR DOW() to use _retni() instead of _retnl()

19990604-12:30 EDT David G. Holm <dholm@jsd-llc.com>
  * source/vm/hvm.c
    - Corrected HARBOUR ERRORLEVEL() to not change the error level if
      it is called with no parameters.

19990604-18:05 CET Jose Lalin (upload Eddie Runia)
  * makefile.*
    descend added
  * source/rtl/descend.c; tests/working/descend.prg; source/vm/initsymb.c
    descend added

19990604-12:00 EDT David G. Holm <dholm@jsd-llc.com>
  * build31.bat
    - Removed the non-portable fully qualified path that somebody added
      to the make command instead of adding to their PATH statement.

19990604-17:15 CET Eddie Runia
  * source/compiler/harbour.y; source/vm/hvm.c; include/pcode.h;
    tests/working/funcarr.prg
    Syntax for :
    <function>[<arrayindex>] <assignment> <value> added

19990604-11:45 CET Eddie Runia
  * source/rtl/classes.c
    _GetClassName() called by ClassName()

19990603-00:00 PST Ron Pinkas
  * hvm.c
    - Reverted VitualMachine() to use case switch rather than direct dynamic call for processing pcodes,
      since such optimization already done by c compiler.

19990604-02:22 Ryszard Glab <rglab@imid.med.pl>

* source/compiler/harbour.y
 * corrected "unmatched END" error if BEGIN/END SEQUENCE was used
 + LOOP now loops to the begginig of FOR/NEXT or WHILE statement
 + EXIT now exits from FOR/NEXT or WHILE statement

* source/compiler/harbour.l
 * corrected support for the following keywords:
   IF, IIF (90 % compatible with Clipper), IN, INCLUDE, INIT, LOCAL, LOOP

* source/vm/hvm.c
 local variables passed by reference in a codeblock are handled
 correctly now

* include/hberrors.h
 + added new error message

* tests/working/keywords.prg
 + added some new keywords for compatibility testing

+ tests/working/keywords.ch
 + new file for INCLUDE testing

+ doc/codebloc.txt
 + new file with a short description of a codeblock implementation


19990603-19:00 EDT David G. Holm <dholm@jsd-llc.com>
  Thanks go to Ryszard Glab <rglab@imid.med.pl>
  * makefile.dos
    - Added -r to two make lines for source/compiler

19990604-00:25 CET Eddie Runia
  * source/rtl/classes.c
    With _GetClassName(); optimized; more comments; more clean-up

19990603-21:50 CET Eddie Runia
  * source/rtl/classes.c; tests/working/run_exp.h
    OBJFUNC.PRG added to init symbols scheme.

19990603-20:20 CET Eddie Runia
  * source/rtl/classes.c; source/vm/initsymb.c; tests/working/run_exp.h
    First implementation of init symbols scheme.

19990603-14:00 EDT David G. Holm <dholm@jsd-llc.com>
  * makefile.dos
    - Even with the -y in the source/compiler/makefile.dos, when I
      used builddos, which uses makefile.dos, instead of a temporary
      replacement batch file that I used before I figured out why I
      was getting bad command errors when running builddos (it turned
      out that I needed to add the DJGPP\bin directory to the path in
      C:\WINNT\SYSTEM32\AUTOEXEC.NT), it moved y_tab.c to harbour.c!
      So I converted everything in makefile.dos from upper case to
      lower case and it stopped doing that. So i also added the missing
      source/tools directory, so that everything gets build.
  * source/compiler/harbour.l
    - Changed yylval.string = ')'; to yylval.string = strdup( ")" );
    - Changed yylval.string = ']'; to yylval.string = strdup( "]" );

19990603-13:30 EDT David G. Holm <dholm@jsd-llc.com>
  Thanks go to Jose Lalin <dezac@corevia.com>
  * source/rtl/dates.c
    - localtime() returns tm_year with 1900 already subtracted from it,
      so it is necessary to add 1900 back when formatting the date.

19990603-18:30 CET Eddie Runia
  * source/rtl/classes.c; source/rtl/tclass.prg; source/rtl/arrays.c
  * include/ctoharb.h; include/extend.h
    New class module added with lots of commands and alphabetic order.
    aClone() no longer necessary for super casting
    ctoharb.h updated so the forward declarations could be removed.

19990603-16:00 CET Eddie Runia
  * source/rtl/classes.c
    wLimit bug resolved

19990603-15:25 CET Eddie Runia
  * source/compiler/harbour.y
    <func>()[<index>] syntax added

19990603-13:10 CET Eddie Runia
  * source/rtl/classes.c
    small optimalization

19990603-11:40 CET Eddie Runia
  * source/compiler/harbour.y
    <obj>:<meth>[<index>] := <value> syntax added
  * build32.bat
    runner build from batch file

19990603-00:00 PST Ron Pinkas
  * hvm.c
    - Changed VitualMachine() to use direct dynamic call for processing pcodes rather tha the switch loop.

19990603-00:30 EDT David G. Holm <dholm@jsd-llc.com>
  * makedos.env
    - Removed HARBOURDIR definition to a batch file

19990602-23:30 EDT David G. Holm <dholm@jsd-llc.com>
  * source/compiler/makefile.dos
    - bison needs -y option so that it won't replace harbour.c with y_tab.c
      when building Harbour with DJGPP
  * source/rtl/console.c
    - Moved MAXROW() and MAXCOL() from gtapi.c and added #ifdef USE_GTAPI
      in each. The #else condition defines the screen as 24x80 (23, 79)
  * source/rtl/gtapi.c
    - Moved MAXROW() and MAXCOL() to console.c in order to not include the
      GT API when it isn't wanted (such as when building with DJGPP)

19990602-20:45 EDT David G. Holm <dholm@jsd-llc.com>
  * source/rtl/environ.c
    - Modified #ifdef _Windows section to return "Windows"
      instead of "Windows 95/98".

19990602-18:20 EDT David G. Holm <dholm@jsd-llc.com>
  * source/rtl/strings.c
    - Changed if( lLen > lSubLen ) to if( lLen >= lSubLen )
      Reported by "Alexander S.Kresin" <alex@belacy.belgorod.su>

19990602-16:00 EDT David G. Holm <dholm@jsd-llc.com>
  + tests/broken/codebloc.prg
    - Output doesn't match Clipper. Clipper outputs NIL and 42,
      (both 5.2e and 5.3b), but Harbour outputs NIL and NIL (as
      tested with Harbour built using Borland C++ 3.1 using the
      build31.bat and makefile.b31 files)

19990602-22:10 CET Eddie Runia
  * tests/working/run_exp.h
    gtApi and new console functions added

19990602-16:00 EDT David G. Holm <dholm@jsd-llc.com>
  * source/rtl/console.c
    - OS/2 requires that stdout and stderr be flushed in order to stay
      synchronized with the GT API
  * source/rtl/gt/gtos2.c
     - The gtPuts function was using strlen() on the text buffer instead
       of using the text length parameter

19990602-14:50 EDT David G. Holm <dholm@jsd-llc.com>
 * makefile.b31
    - Added itemapi.h as dependancy for arrays.obj
  * makefile.icc
    - Added new GT string modules
    - Added Harbour include file dependencies to library sources
  * source/rtl/arrays.c
    - Added #include <itemapi.h>, which is needed by C++ compilers
  * source/rtl/console.c
    - Removed two trailing semicolons from #endif directives
  * source/rtl/gtapi.c
    - When adding HARBOUR MaxRow() and MaxCol() earlier, I forgot the
      rule that Harbour functions may not use any lower case letters
    - Added end comment for comment block around color tests in order
      to avoid having nested comments
  * source/tools/chareven.c
    - Added (char *) type conversion to _xgrab() function call
  * source/tools/charmix.c
    - Added (char *) type conversion to _xgrab() function call
  * source/tools/charodd.c
    - Added (char *) type conversion to _xgrab() function call
  * source/tools/strexpan.c
    - Added (char *) type conversion to _xgrab() function call


19990602-13:05 EDT David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - Added the new gt functions (which have nothing to do with the GT API)
    - All Harbour library source modules are now dependent upon the proper
      include files.
  * source/rtl/console.c
    - The GT API and dev_row, dev_col synchronization now also includes
      OUTSTD() and OUTERR().
  * source/rtl/gtapi.c
    - Corrected error in column overflow handling in _gtWrite()

19990602-18:40 CET Eddie Runia
  * tests/working/run_exp.h
    gt_string functions added

19990602-11:35 EDT David G. Holm <dholm@jsd-llc.com>
  * source/rtl/console.c
    - Added HARBOUR SCROLL()
  * source/rtl/gtapi.c
    - Added HARBOUR MAXROW() and MAXCOL()
  + tests/working/scroll.prg
    - New test module to demonstrate scrolling

19990602-12:00 WIB Andi Jahja <andij@aonlippo.co.id>
  + gt.b32 - make file for gt functions
  + bldgt32.bat - batch file for hbgt.lib
  * tests\working\bld32exe.bat - to include hbgt.lib
  * tests\working\testgt.prg - test program for hbgt.lib
  + some function from PD gt.lib ported to Harbour :
    - source\tools\ascpos.c
    - source\tools\atdiff.c
    - source\tools\chareven.c
    - source\tools\charodd.c
    - source\tools\chrcount.c
    - source\tools\chrtotal.c
    - source\tools\charmix.c
    - source\tools\asciisum.c
    - source\tools\chrfirst.c
    - source\tools\strasint.c
    - source\tools\strcount.c
    - source\tools\strcspn.c
    - source\tools\strdiff.c
    - source\tools\strexpan.c
    - source\tools\strleft.c
    - source\tools\strpbrk.c
    - source\tools\strright.c
  + doc\vm.txt - description of Harbour Virtual Machine

19990602-12:30 CET Eddie Runia
   * source/rtl/arrays.c
     memory leakage in arrayClone plugged

19990602-09:30 Alexander Kresin
  Updated:
   * source/hbpp/hbpp.c - main preprocessor file
   * source/hbpp/c.prg  - sample file
   * source/hbpp/makefile.b16
   * source/hbpp/makefile.b32
  Added:
   * source/hbpp/buildgcc.bat
   * source/hbpp/table.c

19990601-23:50 EDT David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - Made progress on GT API, so put USE_GTAPI back in as default.
  * source/rtl/console.c
    - Cleaned up synchronization between GT API and dev_row, dev_col
  * source/rtl/gtapi.c
    - Initialize starting row and column to 0 instead of 1
    - _gtMaxCol() and _gtMaxRow() are 0-based in Clipper, so subtract 1
      from the device width and height
    - Removed call to strlen() in _gtSave(), because Clipper does not appear
      to require the screen buffer to be initialized, just allocated
    - Changed _gtWrite() to deal with writing multiple rows of text
    - Wrote _gtScroll(), which is needed by _gtWritePos() and _gtWrite().

19990601-21:35 CET Eddie Runia
  * tests/working/multinh.prg, source/rtl/classes.c, source/rtl/tclass.prg
    first step to multiple inheritance

19990601-18:15 CET Eddie Runia
  * tests/working/inherit.prg, source/rtl/classes.c, source/rtl/tclass.prg
    version correct release (+ super )

19990601-12:00 EDT David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - Ran into problems using GT API with tests\working\mathtest, so removed
      USE_GTAPI from default use.
  * source/compiler/harbour.y
    - Added missing third parameter (a copy of the first one) to the comment
      section of the generated C pcode for _PUSHDOUBLE.

19990601-12:15 CET Eddie Runia
   * tests/working/inifiles.prg
     new Mab version installed
   * tests/working/inherit.prg, source/rtl/classes.c
     stackfree() bug disappeared (??) after using itemapi in classes.c

19990601-09:50 CET Eddie Runia
   * include/cgi.ch, tests/working/testcgi.prg
     CGI test program added
   * tests/working/run_exp.h
     GetEnv() added

19990531-23:05 CET Eddie Runia
   * source/compiler/harbour.y
     determination of symbol scope now correct.

19990531-21:45 CET Eddie Runia
   * tests/working/inherit.prg
     newer test program. reported crash was due to static functions ?
   * source/rtl/classes.c
     some small improvements

19990531-16:35 CET Matthew Hamilton (upload by Eddie Runia)
   * tests/working/inifiles.prg
     version 2 which creates harbour.new

19990531-14:30 CET Matthew Hamilton (upload by Eddie Runia)
   * tests/working/harbour.ini, tests/working/inifiles.prg
     added

19990531-13:20 CET Eddie Runia
   * source/rtl/classes.c; source/rtl/tclass.prg
     better version of inheritance
   * tests/working/inherit.prg
     some minor changes

19990531-10:15 CET Felipe G. Coury (upload Eddie Runia)
   * tests/working/testhtml.prg
     beautiful !!

19990530-23:05 CET Eddie Runia
   * source/rtl/objfunc.prg
     since aEval has been clean for a long time, it was time to use it !

19990530-21:30 CET Eddie Runia
   * source/rtl/classes.c; source/rtl/tclass.prg
     initializer and release ready for inheritance
   * tests/working/inherit.prg
     init test added

19990530-12:12 EST Les. Griffith
   * added logic for hb_file in files.c
   * added test filexist.prg to test hb_file() in tests working

19990530-17:30 CET Eddie Runia
   * source/rtl/files.c
     fixed 0x00 byte handling of fReadStr
   * tests/working/readhrb.prg
     now a Harbour program
   * tests/working/readhrb.lnk
     removed. No longer necessary

19990530-11:18 EST Les. Griffith
   * added logic for _fscommit in files.c

19990530-14:00 CET Eddie Runia
  * source/rtl/classes.c; source/rtl/tclass.prg
    first step to inheritage
  * tests/working/inherit.prg
    test program

19990530-13:15 CET Eddie Runia
  * source/rtl/classes.c
    message <> not found bug finally removed

19990530-00:25 EST Les. Griffith
   * add logic for _fslock in files.c

19990529-23:46 Alexander Kresin
  Preprocessor: implementation of #command almost complete
  Updated:
   * source/hbpp/hbpp.c - main preprocessor file
   * source/hbpp/harb.c
   * source/hbpp/c.prg  - sample file
19990529-19:45 CET Eddie Runia
  * tests/working/run_exp.h
    hb_f* functions added

19990529-10:04 EST Les Griffith
  * Files.c defined out scandir on djgpp
  * Set.c added include errno.h for djgpp
  * makefile.dos remaked out tests\working makefile.dos logic
  * created hbdos.bat in tests\working for gcc creation of exes

19990529-15:00 CET Eddie Runia
  * source/rtl/set.c
    small correction in ReleaseSets()

19990528-14:30 EST David G. Holm <dholm@jsd-llc.com>
  * source/rtl/console.c
    - NIL ouptuts "NIL", just like it used to before I removed it after
      running some tests with Clipper, which turned out to be flawed.
    - Improved link between GT API screen position and stdout/stderr
      screen position.

19990528-23:15 WIB Andi Jahja <andij@aonlippo.co.id>
  * source/tools/hb_f.c
    - add hb_fselect

  + tests/working/testsel.prg
    test program for hb_fselect()

19990529-10:11 EST Les Griffith
  * added both builddos.bat and makefile.dos for djgpp dos enviroment

19990528-21:00 WIB Andi Jahja <andij@aonlippo.co.id>
  * makefile.b32
    modified to include hb_f.c in harbour.lib

  + source/tools/hb_f.c
    nanforum ft_f*() clones
    - hb_fuse
    - hb_frecno
    - hb_flastrec
    - hb_fgotop
    - hb_fgobottom
    - hb_fgoto
    - hb_feof
    - hb_freadln
    - hb_fskip

  + tests/working/testhbf.prg
    - Test program for hb_f*() routines

19990527-22:06 EST Les Griffith
  * changed iotest.prg to work without and exit clause

19990527-21:57 EST Les Griffith
  * fix to gtwin.c for duplicate function gtwherex 2nd one should be
    gtwherey

19990527-18:00 EST David G. Holm <dholm@jsd-llc.com>
  * makefile.icc
    - Added missing modules
    - Modified to build console with USE_GTAPI
    - Modified to put console and gtos2 into terminal library
  * source/rtl/console.c
    - Had row,col and y,x reversed in InitializeConsole()
  * source/rtl/gt/gtdos.c
    - Had row,col and y,x reversed in gtWhereX() and gtWhereY()
  * tests/working/biccexe.cmd
    - Include new terminal library

19990527-17:25 EST David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - Added -DUSE_GTAPI as standard compiler option
  * source/rtl/console.c
    - Added #ifdef USE_GTAPI to allow compiling without using the GT API

19990527-14:15 EST David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - Added gtdos to terminal library
  * include/ctoharb.h
    - Added word wDec parameter to PushDouble prototype (needed by C++ compilers)
  * include/gtapi.h
    - Added $Id$ block at top
    - Added gtWhereX()
    - Added gtWhereY()
  * source/rtl/console.c
    - Added GT API support
    - Added InitializeConsole() to initialize GT API and device screen position
    - Added HARBOUR PROW(), PCOL(), and SETPRC()
    - Synchronize dev_row and dev_col with GT API screen position
  * source/rtl/files.c
    - Borland support now takes into account that older compiler versions
      don't have the POSIX S_ flags.
  * source/rtl/gtapi.c
    - Added $Id$ block at top
    - Changed #include <types.h> to #include <extend.h>
    - Modified _gtWriteCon() to process control characters
  * source/rtl/set.c
    - Added default of "PRN" for HB_SET_PRINTFILE
    - If SET (_SET_DEVCE, "PRINTER") and printer file not open, then open it
  * source/rtl/transfrm.c
    - Added use of wDec parameter in calls to PushDouble()
  * source/rtl/gt/gtdos.c
    - Added $Id$ block at top
    - Added gtWhereX()
    - Added gtWhereY()
    - Removed screen coordinate adjustments (i.e., - 1), because
      Clipper (and therefore Harbour) screen origin is (0,0)
  * source/rtl/gt/gtos2.c
    - Added $Id$ block at top
    - Added gtWhereX()
    - Added gtWhereY()
    - Removed screen coordinate adjustments (i.e., - 1), because
      Clipper (and therefore Harbour) screen origin is (0,0)
    - Note: Still needs some work - doesn't match output from gtdos.c
  * source/rtl/gt/gtwin.c
    - Added $Id$ block at top
    - Added gtWhereX()
    - Added gtWhereY()
    - Removed screen coordinate adjustments (i.e., - 1), because
      Clipper (and therefore Harbour) screen origin is (0,0)
    - Note: Needs to be tested, because I don't have a Windows compiler
  * source/rtl/gt/gtxxx.c
    - Added $Id$ block at top
    - Added gtWhereX()
    - Added gtWhereY()
  * source/vm/hvm.c
    - Added call to InitializeConsole()
    - Added prototypes for InitializeConsole() and InitSymbolTable() for C++ compilers

19990527-19:50 CET Eddie Runia
  * source/rtl/gt/gtdos.c, source/rtl/gt/gtwin.c, source/rtl/gtapi.c
    minor changes
  * makefile.b32
    should be correct now. /* QUESTION : Can anybody do this more the others
                                         as well */
  * tests/working/runner.c run_exp.h
    'DOW()' added to export list

19990527-12:15 CET Eddie Runia
  * tests/working/strip.prg
    slight modification
  * source/rtl/classes.c
    Problem with DynSym (??). Quick fix added to classes.c to stop
    message '<x>' not implemented in class '<y>'

19990527-08:45 CET Eddie Runia
  * makefile.b32
    gtdos added
  * source/rtl/gt/gtdos.c; include/gtapi.h; tests/working/run_exp.h;
    source/rtl/console.c
    Minor changes to get it working

19990527-00:14 Les Griffith
    * moved gtos2.c gtwin.c gtdos.c gtxxx.c to source\rtl\gt
      at Matthew Hamilton suggestion

19990526-22:53 Les Griffith
    * added Bil Simser's gtapi.h to include
      and the c files to source\rtl
    * added to doc Bil's documentation re gtapi

19990526-20:45 EST David G. Holm <dholm@jsd-llc.com>
  * ChangeLog
    - Removed excess whitespace from previous ChangeLog entry
  * makefile.b31
    - Added some missing source files
  * include/set.h
    - Added hb_set_althan and hb_set_printhan
  * source/rtl/console.c
    - Added OUTERR(), DEVPOS(), DEVOUT(), and EJECT()
    - Note: DEVPOS() and DEVOUT() have limited console support, due to the
      lack of a working GT API.
  * source/rtl/files.c
    - Added missing #if ! defined( __WATCOMC__ ) && ! defined( __BORLANDC__ )
      around first use of S_IWUSR (copied from existing #if from second use).
  * source/rtl/set.c
    - Added file open/close support to HB_SET_ALTFILE and HB_SET_PRINTFILE
  + tests/working/output.prg
    - New module to test DEVPOS() and DEVOUT()

19990527-00:40 Ryszard Glab <rglab@imid.med.pl>
    * the support for following keywords are now 100% compatible with Clipper
      EXTERNAL, FIELD, FOR, FUNCTION

19990526-13:30 EST David G. Holm <dholm@jsd-llc.com>
  * source/rtl/dates.c
    - Added hb_dow and HARBOUR DOW() supplied by Jose Lalin <dezac@corevia.com>
  + tests/working/dates3.prg
    - New file to test DOW() supplied by Jose Lalin <dezac@corevia.com>

19990526-17:25 Eddie Runia
  * tests/working/strip.prg
    delete broken one and moved working one in

19990526-16:10 Eddie Runia
  * source/rtl/files.c
    Pass reference error removed.
  * source/rtl/extend.c
    par* commands now work correctly with reference variables.

19990525-23:25 Les Griffith
  * source/rtl/files.c
    added logic to readstr for lasterror

19990525-22:45 CET Eddie Runia
  * tests/working/spawn2.prg; tests/working/runner.c
    support for STATIC functions added and error message for duplicate
    identifiers

19990525-21:30 CET Eddie Runia
  * tests/working/spawn2.prg
    Warning added if not compiled using /gHRB

19990525-19:15 CET Eddie Runia
  * source/runner/runner.c; source/runner/run_exp.h; source/runner
    created. currently in transition.

19990525-15:40 CET Eddie Runia
  * bin, libs/b16, libs/b32, libs/vc, libs/icc, libs/win16 & libs/win32
    added as per request

19990525-10:40 CET Eddie Runia
  * source/vm/initsymb.c
    DATE added to init symbols

19990525-10:03 CET Antonio Linares <alinares@fivetech.com>
  * tests/working/runner.c (shouldn't this file be located at source/runner?)
    - some small changes to admit FILE() Harbour name.
  * tests/working/run_exp.h (shouldn't this file be located at include directory ?)
    - some small changes to admit FILE() Harbour name.

19990525-09:13 CET Antonio Linares <alinares@fivetech.com>
  * makefile.b32
    - project dependencies list order changed to properly build everything in one pass

19990525-09:01 CET Antonio Linares <alinares@fivetech.com>
  * source/rtl/extend.c
    - wArrayIndex Borland C warnings fixed.

19990525-08:45 CET Antonio Linares <alinares@fivetech.com>
  * include/extend.h
    - workaround to avoid conflicts between FILE struct and harbour FILE()
  * source/rtl/files.c
    - _FILE() renamed to FILE()  /* tests/working/test_all.prg now builds fine */

19990525-08:21 CET Antonio Linares <alinares@fivetech.com>
  * makefile.b32
    - enhanced .path.obj so the compiler gets not built always
  * source/rtl/files.c
    - enhanced support for Borland C 5.2 compiler

19990524-19:20 EST David G. Holm <dholm@jsd-llc.com>
  * source/rtl/dates.c
    - Added HARBOUR DATE() function.
  * tests/working/dates.prg
    - Added use of DATE() function in first OUTSTD call.

19990524-21:05 CET Eddie Runia
  * source/rtl/strings.c
    PAD* didn't work correctly with negative numbers
  * source/rtl/extend.c
    _parnl needed casting

19990524-17:10 CET Eddie Runia
  * tests/working/test_all
    Fully automated the test bench.
    If you select HRB, it also runs the program.
    Just press <Enter> a couple of times and you should know how to loose
    Mankala blindly.

19990524-16:45 CET Les Griffith (upload Eddie Runia)
  * tests/working/iotest2.prg
    Test program fReadStr
  * tests/broken/exittest.prg
    Anyone up for a challenge ;-)

19990524-16:40 CET Eddie Runia
  * include/hbsetup.h
    WATCOM if added
  * tests/working/*.prg
    minor updates

19990524-14:30 CET Eddie Runia
  * source/vm/hvm.c
    <xArg> := PValue(<nArg>) added
  * tests/working/run_exp.h
    added to function list
  * tests/working/multiarg.prg
    test program used

19990524-10:25 CET Alexander Kressin (upload Eddie Runia)
  * source/hbpp
    added preprocessor

19990524-08:10 CET Les Griffiths (upload Eddie Runia)
  * source/rtl/files.c
    a step in right the direction

19990523-16:45 CET Eddie Runia
  * tests/working/test_all.prg
    Optional command line option added. If you pass HRB, it will compile
    .HRB files. (Also it redirects the output to test_all.out, because
    it went to quickly)

19990523-16:15 CET Patrick Mast (upload by Eddie Runia)
  * tests/working/test_all.prg, tests/working/test_all.lnl
    Testbank added.
  * tests/working/*.prg
    So programs not qualified for testing.
  * tests/working/rtl_test.prg
    function Main() added

19990523-14:30 CET Eddie Runia
  * tools.b16, tools.b32, bldtls32, bldtools.bat
    send to heaven

19990523-14:05 CET Eddie Runia
  * source/rtl/files.c
    #include added for Borland
  * source/rtl/strings.c
    str error fixed

19990523-12:50 CET Eddie Runia
  * source/rtl/transfrm.c
    Modified for by reference. (Forgot I was Captain of that)

19990523-12:20 CET Eddie Runia
  * include/types.h
    modified the IS_* to work for reference passed variables
  * source/vm/hvm.c
    Changed ->wType to IS_* if possible else added & ~IT_BYREF
  * source/rtl/strings.c
    Strings also modified


19990523-11:36 CET Manuel Ruiz
  * source/rtl/files.c
    Add HAVE_POSIX_IO for Borland and GCC compilers

19990523-08:00 CET Les Griffith (upload by Eddie Runia)
  * source/rtl/files.c
    Yes, revision 1.2 !
  * tests/working/passref.prg, tests/working/iotest.prg
    test files added. (Not functioning correctly yet)

19990522-18:30 CET Eddie Runia
  * tests/working/runner.c
    command-line arguments passed to both init function and running program
  * tests/working/spawn.prg
    test program

19990522-17:50 CET Eddie Runia
  * source/rtl/arrays.c, source/rtl/classes.c
    typical : if it works on one compiler, it will fail on another.
    oClone also modified :-)

19990522-17:25 CET Eddie Runia
  * source/vm/hvm.c
    'Array' bug possibly resolved.
  * source/rtl/arrays.c
    aClone does not loose memory anymore
  * tests/working/ainstest.prg
    test for aClone added.

19990522-15:55 CET Eddie Runia
  * docs/hrb.faq
    Clean up
  * tests/working/stub.dat, tests/working/hbrun.bat
    Renamed stub.bat to hbrun.bat (Better name)

19990522-15:35 CET Eddie Runia
  * tests/working/instr.prg, source/vm/hvm.c
    Les Griffiths patch inserted

19990522-15:10 CET Eddie Runia
  * include/test.ch
    added
  * source/rtl/environ.c
    Crash resolved for C++ Builder
  * tests/working/testtok.prg
    set exact added

19990522-14:40 CET Eddie Runia
  * tests/working/*.bat
    -i..\..\include added

19990522-14:10 CET Eddie Runia
  Change from 11:43 committed
  * tests/broken/instr.prg
    removed
  * include/hbsetup.h
    #define HARBOUR_START_PROGRAM temporarily commented out, because of errors

19990522-11:43 CET Eddie Runia
  * source/vm/hvm.c
    pItem bug in add changed
    Instring operator added
    'unreleased memory block' only get shown if memory block remain open
  * tests/working/instr.prg
    test program for instring added
  * tests/working/runner.c
    'Loading' messages removed
  * source/compiler/harbour.y
    'Debug' messages removed.

19990521-21:45 CET Eddie Runia
  * tests/broken/instr.prg added. Contribution from Les Griffiths.
    formerly known as strcomp
  * source/rtl/transfrm.c.
    Serious error code error
  * source/rtl/classes.c
    Error code added
  * source/vm/hvm.c
    Additional operator overloads added.

19990520-20:07 EST David G. Holm <dholm@jsd-llc.com>
  Thanks go to "Victor Szel" <info@szelvesz.hu> again!
  * source/rtl/strings.c
    - VAL sets the number of integer digits and decimal places for the result

19990520-19:35 EST David G. Holm <dholm@jsd-llc.com>
  Thanks go to "Victor Szel" <info@szelvesz.hu>
  * source/compiler/harbour.l
    - Saves number of decimal places in double constants
  * source/compiler/harbour.y
    - Includes number of decimal places when creating pcode for _PUSHDOUBLE
  * source/vm/hvm.c
    - Pcode for _PUSHDOUBLE extracts number of decimal places

Thu May 20 16:03:24 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * source/rtl/dates.c:
        Nasty bug: using '&' instead of '&&'.

        * config/header.cf:
        * include/Makefile:
        * Makefile:
        Added rules to deal with include files (they are just installed
        into INC_DIR). Now the top level Makefile traverses include before
        source.

        * config/win32/gcc.cf:
        * config/win32/msvc.cf:
        * config/win32/global.cf:
        The include directory is now given by INC_DIR.

        * config/win32/rules.cf:
        Harbour now uses -I to find include files.

        * include/hbsetup.h:
        Moved OS_PATH_DELIMITER back to harbour.y, as PATH_DELIMITER; it
        is now a string that contains "/\\".

        * source/compiler/harbour.y:
        Deal with '/' as path separator ('\\' still works).
        Make sure -q is really quiet.

        * source/rtl/Makefile:
        * source/tools/Makefile:
        Used tabs instead of spaces.

        * source/rtl/gtapi.c:
        * source/tools/io.c:
        Made sure these two compile in non-DOS platforms (don't do much
        though).

        * source/vm/hvm.c:
        Fixed a warning about using %i instead of %li.

19990520-07:10 MST Bil Simser (bsimser@home.com)
  * makefile.vc
    Updated makefile to include new changes to RTL

19990520-13:50 CET Eddie Runia
  * tests/working/transfrm.c
    set date and century added.

19990520-11:00 CET Eddie Runia
  * tests/working/runner.c
    simple file correctness checks added

19990520-03:40 EST David G. Holm <dholm@jsd-llc.com>
  * include/set.h
    - Added hb_set_fixed and HB_SETFIXED().
  * source/rtl/set.c
    - Added hb_set_fixed and HB_SETFIXED().
  * source/rtl/strings.c
    - Added test for hb_set_fixed and set default number of decimal positions
      to hb_set.HB_SET_DECIMALS if hb_set_fixed is TRUE instead of using the
      number of decimal positions specified in the ITEM structure.
  * source/vm/hvm.c
    - Removed the special case for a return value of zero from PushNumber().
  * tests/working/teststr.prg
    - Added a second run of the test with SET FIXED ON.

19990520-03:00 EST David G. Holm <dholm@jsd-llc.com>
  * include/extend.h
    - Added new function hb_str() for public use.
  * source/rtl/console.c
    - hb_outstd() now uses hb_str() instead of formatting numerics itself.
  * source/rtl/strings.c
    - Added new hb_str() function to do all numeric formatting for all of Harbour.
    - Rewrote STR() to call hb_str() after validating parameters.
  + tests/working/teststr.prg
    - New module to test new function hb_str() via STR() and STDOUT().

19990519-23:50 EST David G. Holm <dholm@jsd-llc.com>
  * source/rtl/extend.c
    - Use wDec = hb_set.HB_SET_DECIMALS instead of wDec = 2.
    - _retnd() and _stornd() now set wLength to 20 if the value is over 10 digits.
  * source/rtl/itemapi.c
    - Use wDec = hb_set.HB_SET_DECIMALS instead of wDec = 2.
    - hb_itemPutND() now sets wLength to 20 if the value is over 10 digits.
  * source/rtl/math.c
    - Restored HARBOUR INT() back to use _retnl( _parnd( 1 ) ), because the
      problem was not in the Borland C++ 3.1 compiler, but in the hb_outstd()
      case for IT_LONG in console.c (see 19990518-17:30 EDT David G. Holm for
      the incorrect correction and 19990519-21:40 EST David G. Holm for the
      fix to hb_outstd() in console.c).
  * source/vm/hvm.c
    - Div(), Modulus(), and Power() set wDec to hb_set.HB_SET_DECIMALS.
    - Dec(), Inc(), FOR, and Negate() leave wDec unchanged.
    - Plus() and Minus() set wDec to the larger of the two parameter wDec values.
    - Mult() sets wDec to the sum of the two parameter wDec values.
    - PushDouble() now sets wLength to 20 if the value is over 10 digits.

19990519-22:00 EST David G. Holm <dholm@jsd-llc.com>
 * source/rtl/environ.c
   - Do Windows version check even when #if defined(_Windows).
   - Don't attach version numbers if the major OS version number is unknown.

19990519-21:40 EST David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - Modified to support changes to source/compiler/fixflex.c
  * source/compiler/fixflex.c
    - The two largest tables in lexyy.c are now larger than 64K combined,
      so they are now placed into separate source files and the four next
      largest tables are split into a third source file.
  * source/rtl/console.c
    - Corrected display of IT_LONG to use value.lNumber instead of iNumber.
    - Corrected display of IT_DOUBLE to use wLength as integer size, so that
      when printing decimals the total display size is wLength + wDec + 1.
  * source/rtl/extend.c
    - _retnd and _stornd now set wLength to 10 instead of 13.
  * source/rtl/itemapi.c
    - hb_itemPutL now sets wLength to 3.
    - hb_itemPutNL now sets wLength to 10 and wDec to 0.
    - hb_itemPutND now sets wLength to 10 and wDec to 2.
  * source/vm/hvm.c
    - PushDouble, PushInteger, and PushLong now set wLength and wDec.
  * tests/working/ainstest.prg
    - Modified formatting done by aDump() to be more readable.

19990520-01:40 Ryszard Glab <rglab@imid.med.pl>

    * source/compiler/harbour.y
        -corrected support for INCLUDE environment variable (the last path
        was ignored)
        -definition of path delimiter and path list separator was moved to
        hbsetup.h file. OS_PATH_DELIMITER and OS_PATH_LIST_SEPARATOR are
        now defined.
        -changed #define from OBJ_GENERATION to HARBOUR_OBJ_GENERATION

    * source/compiler/harbour.l
        -EXIT keyword is now properly supported

    * source/vm/hvm.c
        -changed #define from OBJ_GENERATION to HARBOUR_OBJ_GENERATION
        -changed #define from HARBOUR_MAIN to HARBOUR_START_PROCEDURE

    * include/hbsetup.h
        -changed #define from OBJ_GENERATION to HARBOUR_OBJ_GENERATION
        -changed #define from HARBOUR_MAIN to HARBOUR_START_PROCEDURE
        -added #define OS_PATH_DELIMITER
        -added #define OS_PATH_LIST_SEPARATOR

    * include/hberrors.h
        -added #define ERR_UNMATCHED_EXIT

    * source/rtl/environ.c
        -corrected support for Watcom C/C++ compiler

    * tests/working/keywords.prg
        -added test code for EXIT keyword

19990519-21:22 CET Eddie Runia
  * makefile.b16
    Patrick patch (command-line too long entered)

19990519-20:00 CET Eddie Runia
  * tests/working/run_exp.h
    shortened because InitSymbols
  * makefile.b16 / .b32 / .icc
    initsymb.c added

19990519-18:00 CET Eddie Runia
  * docs/hrb.faq
    add some documentation and FAQ list for the .HRB output

19990519-12:50 CET Eddie Runia
  * source/compiler/harbour.y
    Some clean up
  * tests/broken/runner.c | run_exp.h | stub.bat
    removed
  * tests/working/runner.c | run_exp.h | stub.bat
    added runner code
  * tests/working/spawn.prg
    spawn example program
  * tests/working/readhrb.prg + readhrb.lnk
    Clipper program to read .HRB files

19990518-23:15 David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - Put all common BCC options in c_opt macro to make it easy to switch to
      C++ by simply adding -P to c_opt and changing -P- on fixflex line to -P+
    - I left the makefile creating Harbour using C, because there was no change
      in harbour.exe size or behaviour with C++ (Borland C++ 3.1)
  * source/compiler/fixflex.c
    - Modified to work with both C and C++ versions of Harbour
  + tests/working/bldpexe.bat
    - Copy of buildexe.bat with -P option to compile with C++
  + tests/working/hbp.bat
    - Copy of hb.bat that calls bldpexe.bat to use C++

19990519-02:45 Ryszard Glab <rglab@imid.med.pl>

* source/compiler/harbour.y
    - added support for INCLUDE environment variable
    - corrected looking for unmatched ENDIF/ELSE//ELSEIF
    - added '-t' option = alternative initialization of symbol table
    When this option is used then the Harbour generates C code for a function
    <modulename>__InitSymbols that have to be called in order to properly
    initialize the global symbol table. You should use this option if you
    want to generate the C code output and your C compiler doesn't allow
    to call any function before the 'main'.

* surce/vm/initsymb.c
    - added new file that registers a symbols table with runtime support
    functions. This file can be edited to add calls for application specific
    functions that registers local symbols tables used in application modules.
    The Harbour compiler can create <modulename>__InitSymbols functions
    when you use '-t' option.

* source/vm/hvm.c
    - added call for InitSymbolTable function that registers symbol table
    with runtime support Harbour functions.

19990518-19:30 David G. Holm <dholm@jsd-llc.com>
  * source/rtl/environ.c
    - Enhanced Harbour OS function to return both OS and Version
      for OS/2, DOS, and Windows 95/98.

19990518-18:00 David G. Holm <dholm@jsd-llc.com>
  + buildicc.cmd
    - New file for IBM C++ 3.0 for OS/2
  + makefile.icc
    - New file for IBM C++ 3.0 for OS/2
  * include/types.h
    - Added #ifdef for IBM C++ 3.0 for OS/2
  * source/compiler/harbour.c
    - Added #ifdef and isatty() for IBM C++ 3.0 for OS/2
  * source/rtl/environ.c
    - Added #ifdef for IBM C++ 3.0 for OS/2
  + tests/working/biccexe.cmd
    - New file for IBM C++ 3.0 for OS/2
  + tests/working/hbicc.cmd
    - New file for IBM C++ 3.0 for OS/2

19990518-23:40 CET Eddie Runia
  * source/compiler/harbour.y
    GenPortObj added. Can be accessed through /gHRB
    generates portable object structure.
  * tests/broken/hrb.bat
    added. simple batch file for HRB compilation
  * tests/broken/runner.c
    added. runner program
  * tests/broken/run_exp.h
    added. runner include file containing 'exportable' functions.

19990518-17:30 EDT David G. Holm <dholm@jsd-llc.com>
  * source/rtl/console.c
    - Use pItem->wLength and pItem->wDec when printing numbers.
  * source/rtl/dates.c
    - Moved date validation to hb_dateEncode function.
    - hb_dtoc now puts date separators in an empty date.
    - DAY function now sets stack.Return.wLength to 3.
    - MONTH function now sets stack.Return.wLength to 3.
    - YEAR function now sets stack.Return.wLength to 5.
  * source/rtl/extend.c
    - Set stack.Return.wLength and stack.Return.wDec for numbers.
    - _retds() now returns 8 spaces for invalid dates.
  * source/rtl/math.c
    - ABS returns same numeric type as parameter.
    - INT returns same numeric type as parameter, but for IT_DOUBLE, the
      value is truncated, wLength is set to 10, and wDec is set to 0.
  * tests/working/dates.prg
    - Removed trailing spaces in strings in OUTSDT calls with multiple items,
      because OUTSTD provides a leading space for all items but the first.
  * tests/working/mathtest.prg
    - Added QOUT(454.14) and QOUT(INT(454)) to debug INT problem with
      Borland C++ 3.1, which lead to change to INT in source/rtl/math.c

19990518-15:20 EDT David G. Holm <dholm@jsd-llc.com>
  * source/rtl/set.c
    - Fixed memory leak in HB_SETCENTURY

19990518-03:05 Ryszard Glab <rglab@imid.med.pl>

    * source/compiler/harbour.l
        -corrected misspelled wCaseCounter

    * include/hberrors.h
        -new errors definition added (it should be uploaded in previous
        commit -sorry my fault

19990518-01:45 Ryszard Glab <rglab@imid.med.pl>

        * source/compiler/harbour.l, source/compiler/harbour.y
        -added support for '-i' option (#include file search path)
        however it doesn't use SET INCLUDE environment variable yet
        -added error messages if unmatched ENDDO, ENDCASE, ENDIF, NEXT
        is found

        * include/extend.h
        -added forward declaration of CODEBLOCK structure and added
        the proper type for pCodeblock member of ITEM structure

        * source/vm/hvm.c
        -corrected pCodeblock type casting
        -added C++ style declaration of HB_FIRSTSYMBOL and HB_LASTSYMBOL

19990517-16:05 CET Eddie Runia
  * source/rtl/classes.c, source/rtl/tclass.prg, include/extend.h
    Initializers for DATA items added
  * tests/working/clasinit.prg
    Test program added

19990516-20:20 EDT David G. Holm <dholm@jsd-llc.com>
  * source/rtl/dates.c
    - Modified CTOD to perform date validation to only allow dates in the
      range allowed by Clipper: January 1, 0 through December 21, 2999.
    - Added parameter checking to hb_dtoc.
  * source/rtl/extend.c
    - Modified _pards to return an empty string ("") for invalid dates.
    - Modified _retds to set the Harbour date to 0 if the parameter is missing
      or if the parameter is not an 8-character null-terminated string.
  * source/vm/hvm.c
    - Changed EMPTY case for IT_NUMERIC to IT_INTEGER, because IT_NUMERIC is a
      composite of IT_INTEGER, IT_LONG, and IT_DOUBLE, which caused all integer
      values to return .T.
  * tests/working/empty.prg
    - Added SET CENTURY ON and SET DATE BRITISH, and removed text regarding DTOC
      needing to be fixed.

19990516-21:33 CET Eddie Runia
    * tests/working/set.ch removed

19990516-07:04 Ryszard Glab <rglab@imid.med.pl>

    * source/compiler/harbour.l, source/compiler/harbour.y
        -cleaned rules for NEXT, BREAK, WHILE, BEGIN, DO to be 100%
        Clipper compatible (mainly keyword[] use);
        -corrected support for END keyword;
        -added include files: hbsetup.h and hberrors.h;
        -code for OBJ generation is now linked optionally -it is linked if
        the symbol OBJ_GENERATION is defined in hbsetup.h file;
        -corrected the generation of EXTERNAL symbols

    * source/vm/hvm.c
        -code with support for symbols defined in OBJ files is now linked
        optionally -it is linked if the symbol OBJ_GENERATION is defined
        in hbsetup.h file
        -added support for optional definition of the starting procedure
        (in case when automatic lookup for it doesn't work (Watcom C/C++))

    * include/hbsetup.h
        -new file with Harbour configuration options (see this file for
        available options)

    * include/hberrors.h
        -new file with error constants definition shared by
        harbour.y and harbour.l

    * include/extend.h
        -added declaration of FindDynSym() function used in hvm.c

    * source/rtl/environ.c
        -added correct #include for Watcom C/C++ to use REGS union
        (although I am not sure if OS function should be placed here)

    * source/rtl/itemapi.c
        -corrected wrog declaration of symEval variable
        (it is SYMBOL structure instead of PSYMBOL pointer)

    * tests/working/keywords.prg
        -added test code for END keyword

    * makewat.env, makefile.wat
        -added/corrected makefiles for Watcom C/C++ compiler

    * makedos.env, makefile.dos
        -added/corrected makefiles for pure DOS DJGPP compiler

19990516-06:30 CET Eddie Runia
  * tests/working/bld32exe.bat
    Correct version added

19990516-01:00 CET Eddie Runia
  * source/rtl/arrays.c, source/rtl/extend.h
    ULONG instead of int hb_arrayLen()
    Reallocation bug in arrayAdd fixed

19990515-19:40 CET Eddie Runia
  * source/rtl/classes.c, source/rtl/arrays.c
    oClone added (actually : aClone can handle both :-)

19990515-16:20 CET Eddie Runia
  * source/compiler/harbour.y
    Jump optimalization caused return to fail. Optimalization removed.

19990515-15:15 CET Eddie Runia
  * source/rtl/environ.c
    Crash from geninterrupt resolved

19990515-13:55 CET Eddie Runia
  * source/rtl/classes.c
    Unreleased memory block in inline resolved. AGAIN !

19990515-13:40 CET Eddie Runia
  * source/rtl/classes.c
    CVS Just deleted another upload !!!!

19990515-12:50 CET Eddie Runia
  * tests/working/overload.prg; source/rtl/hvm.c
    overloading basis

19990515-10:20 CET Eddie Runia
  * tests/working/*.bat  make and build files added

19990514-20:10 EDT David G. Holm <dholm@jsd-llc.com>
  * source/rtl/strcmp.c
    - Added SET EXACT ON rules for null strings and trailing spaces.
  * tests/working/strings3.prg
    - Added tests for null strings and trailing spaces.

19990515-01:15 CET Eddie Runia
  * source/compiler/harbour.y
    #include again

19990513-22:20 EDT David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - Put harbour.obj back into the harbour.exe build.
  * source/compiler/harbour.y
    - Changed Expression EQ (for ==) to generate new PCODE _EXACTLYEQUAL, again.
  * source/vm/hvm.c
    - Modifed the Equal function to take one parameter: BOOL bExact, again.
    - Modified the handler for PCODE _EQUAL to call Equal( FALSE ), again.
    - Added new handler for PCODE _EXACTLYEQUAL, which calls Equal( TRUE ), again.
    - Modified the Equal function to call hb_itemStrCmp with bExact as the new
      third parameter, again.

19990514-23:45 CET Eddie Runia
  * source/rtl/set.c
    IS_STRING and IS_LOGICAL called without checking for empty pItem.

19990514-22:15 CET Eddie Runia
  * tests/working/set.ch
    added

19990514-20:30 CET Eddie Runia
  * include/set.ch (didn't work)
    added
  * source/rtl/classes.c
    Unreleased memory block in inline resolved

19990514-20:15 CET Eddie Runia
  * source/rtl/gtapi.c
    A lot of #ifdef #endif added or else it couldn't build out of the box.

19990514-19:50 CET Eddie Runia
  * source/rtl/codebloc.c
    Codeblock patch from Ryszard applied

19990514-19:45 CET Eddie Runia
  * source/rtl/arrays.c
    Patch from David (see below) was overwritten ??

19990514-17:05 CET Eddie Runia
  * harbour.y
    xVar[ xEl ] += -= *= /= %= ^= added

19990514-16:00 CET Eddie Runia
  * makefile.b32
    - added objfunc.obj
  * source/vm/hvm.c
    #ifdef NO_OBJ added
  * tests/working/hb32.bat, tests/working/bld32exe.bat
    added.


19990513-22:20 EDT David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - Removed harbour.obj from harbour.exe build, due
      to change from harbour_main to main in harbour.y
  * include/extend.h
    - Added 3rd parameter, BOOL bForceExact, to hb_itemStrCmp
  * include/pcode.h
    - Added new PCODE for _EXACTLYEQUAL to handle difference between = and ==
  * source/compiler/harbour.y
    - Changed Expression EQ (for ==) to generate new PCODE _EXACTLYEQUAL
  * source/rtl/arrays.c
    - Modified ASCAN to call hb_itemStrCmp with FALSE as new 3rd parameter in
      order to match Clipper's use of the = operator for comparisons
  * source/rtl/strcmp.c
    - Added 3rd parameter, BOOL bForceExact, to hb_itemStrCmp and modified the
      code for comparing two strings to not adjust the return value when the
      second string is shorter than the first string and matches the first
      string up to the length of the second string, unless either bForceExact
      or hb_set.HB_SET_EXACT are TRUE
  * source/vm/hvm.c
    - Modifed the Equal function to take one parameter: BOOL bExact
    - Modified the handler for PCODE _EQUAL to call Equal( FALSE )
    - Added new handler for PCODE _EXACTLYEQUAL, which calls Equal( TRUE )
    - Modified the Equal function to call hb_itemStrCmp with bExact as the
      new third parameter
  * tests/working/strings3.prg
    - Added display of the SET EXACT setting before the big string comparison
      test, then duplicated the entire test and added SET (_SET_EXACT, .T.)
      prior to the second set of tests

19990513-11:05 Eddie Runia
  * obj/symbols.obj added
  * makefile.b32
    changed according to Andi/Patrick fix.

19990512-21:30:00 EDT David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - Added implicit rule to compile .prg files in source\tools

19990512-18:40 Eddie Runia
  * source/tools/stringp.prg
    #defines added
  * makefile.b32
    \ error and .prg path corrected
  * makefile.b16
    .prg path corrected

19990512-01:15:00 EDT David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - Added genobj32.c and sybmols.asm
    - Made more developer friendly (you no longer have to remember
      which intermediate files to delete when a build fails due to an
      error in the makefile or an error in an intermediate step).
    - Added fixflex to split flexyy.c into flexyy.c and flex_tab.c
  + source/compiler/fixflex.c
    - New source module to split flexyy.c into smaller flexyy.c with
      the two largest tables in flex_tab.c.
      NB! Not needed for 32-bit compilers.

Tue May 11 18:53:43 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>
<<<<<<< ChangeLog
=======

        * Makefile:
        Added obj to the list of directories.
>>>>>>> 1.78

<<<<<<< ChangeLog
        * Makefile:
        Added obj to the list of directories.

        * source/Makefile:
        Added rdd to the list of directories.

        * source/rtl/Makefile:
        Added gtapi.c to the list of C sources.

        * source/rtl/gtapi.c:
        Got rid of two warnings with gcc.

        * source/rtl/environ.c:
        Made sure it compiles with gcc.
        There was a missing #endif.

        * source/tools/stringp.prg:
        * tests/working/debugtst.prg:
        Replaced Debug() with HBDebug(), otherwise the generated C source
        collides with the macro DEBUG.

        * source/vm/hvm.c:
        Corrected a comment.

        * source/rdd/Makefile:
        * obj/Makefile:
        Added these two Makefiles.

=======
        * source/Makefile:
        Added rdd to the list of directories.

        * source/rtl/Makefile:
        Added gtapi.c to the list of C sources.

        * source/rtl/gtapi.c:
        Got rid of two warnings with gcc.

        * source/rtl/environ.c:
        Made sure it compiles with gcc.
        There was a missing #endif.

        * source/tools/stringp.prg:
        * tests/working/debugtst.prg:
        Replaced Debug() with HBDebug(), otherwise the generated C source
        collides with the macro DEBUG.

        * source/vm/hvm.c:
        Corrected a comment.

        * source/rdd/Makefile:
        * obj/Makefile:
        Added these two Makefiles.

>>>>>>> 1.78
19990511-19:20 Eddie Runia
  * source/rtl/classes.c
    (Default) parameter self added to INLINE methods
  * tests/working/inline.prg
    Test of INLINE method.

19990511-09:55 Eddie Runia
  * source/rtl/objfunc.prg, source/tools/stringp.prg
    created from tests/working/debugtst.prg
  * Makefile.*
    files added to list. (Except makefile.vc)

19990511-09:40 Eddie Runia
  * source/rtl/asort.prg
    added a seperate function
  * tests/working/debugtst.prg
    asort removed
  * Makefile.*
    asort added to list. (Except for makefile.vc; Incomplete ?)

19990511-00:07 MSG Bil Simser <bsimser@home.com>
  * source/rtc/environ.c
    - Added OS function
  * tests/working
    - Added OS.PRG test program

19990510-21:45 EDT David G. Holm <dholm@jsd-llc.com>
  * source/harbour.y
    - Put back a C++ lvalue fix that appears to have gotten lost
      during a diff merge:
      Parameter in call to yy_switch_to_buffer with embedded
      assignment needs () around the entire expression in order
      to have the (YY_BUFFER_STATE) type override apply to the
      result of the assignment.

Mon May 10 19:32:34 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * makefile.b32:
        Added source/compiler/harbour.c to this makefile.

        * source/compiler/Makefile:
        Added genobj32.c.

        * source/compiler/genobj32.c:
        Got rid of warnings.

        * source/compiler/harbour.y:
        Added '/' as path separator.

19990510-11:30 Eddie Runia
    * source/rtl/classes.c
      Function IsMessage() added
    * tests/working/debugtst.prg
      Function IsData() / IsMethod() added. Also contains tests for Is*()

19990510-10:05 Eddie Runia
    * source/vm/hvm.c
      Function PCount() added  /* QUESTION: Should it be there ? */
    * tests/working/debugtst.prg
      PCount() used

19990510-09:10 Eddie Runia
    * source/rtl/itemapi.c, include/itemapi.h
      - new version installed
    * source/tools/debug.c, source/rtl/classes.c
      - _item changed to hb_item

19990510-08:32 Eddie Runia
    * include/harbclip.h grabbed

19990510-01:19 Ryszard Glab <rglab@imid.med.pl>

    * source/compiler/harbour.l, source/compiler/harbour.y
        - corrected syntax check for:  case->  case+=   case-=
        - DO/WHILE/CASE/WITH is now 100% compatible with Clipper
        - there is still problem with comments that ends with **/
        (exactly two asterix and slash)

    * tests/working/keywords.prg
        - added code to test DO/WHILE/CASE/WITH

19900509-23:30 Eddie Runia
   * source/working/mankala.prg
     Instructions added

19990509-21:00 Eddie Runia
   * hvm.c
     Logical equivalence tests added ( ==, !=, >, <, >=, <= )
   * debugtst.c
     Logical equivalence used. (==) aoMethod down to one-liner !

19990509-19:30 Eddie Runia
   * makefile.b16, makefile.b32
     debug.obj added

19990509-18:10 Eddie Runia
   * tests/working/calling
     Function Second changed to SecondOne()
   * tests/working/initexit
   * tests/working/statfun
     See above
   * tests/working/testtok
     i was required in next - Problem resolved (Thanx ! Ryszard ?)

19990509-18:00 CET Victor Szel <info@szelvesz.hu>

   * source/rtl/strings.c:
     hb_At() -> hb_strAt()
   * source/rtl/*.c, source/include/extend.h
     hb_julian2greg() -> hb_dateDecode()
     hb_greg2julian() -> hb_dateEncode()

19990508-20:57 Eddie Runia
   * source/rtl/arrays.c:
     Fixed unreleased memory block in aEval.

19990508-15:24 CET Victor Szel <info@szelvesz.hu>

   * source/rtl/strings.c:
     Fixed warning in PADR(), PADL(), PADC() (David G. Holm)

19990507-23:45 EDT David G. Holm <dholm@jsd-llc.com>
  This update makes Harbour compatible with the IBM C++ compiler.
  * include/init.h
    - Added test for IBM C++ compiler to Microsoft C #if block
  * include/types.h
    - Added #ifdef block for IBM C++ compiler to set #define for
      HARBOUR as simply void and also to set up a new #define
      for EXTERNAL_LINKAGE (as _LNK_CONV) in order for the
      IBM C++ compiler to compile harbour.y.
  * source/compiler/harbour.l
    - Added static to forward delcaration for yyunput in order to
      match the actual definition.
  * source/compiler/harbour.y
    - Added static to forward declaration of __yy_memcpy in order
      to match the actual definition.
    - Added EXTERNAL_LINKAGE to sz_compare4 definition, so
      that the IBM C++ compiler can successfully compile Harbour.
    - Added (BYTE *) type override to szText parameter in second
      invocation of GenPCodeN (the first one already had an override).

19990507-23:15 EDT David G. Holm <dholm@jsd-llc.com>
  * source/vm/hvm.c
    - Changed byte by byte copy used in PushString to memcpy,
      because the side effects of code like szTemp[w++] = szText[w]
      is compiler dependent. Borland C++ 3.1 (in C mode) copies byte
      0 to byte 0, etc., but IBM Visual Age C++ 3.0 (in C++ mode)
      copies byte 1 to byte 0, etc.

Sat May  8 03:02:04 1999 Ryszard Glab <rglab@imid.med.pl>

    * source/compiler/harbour.y, source/compiler/harbour.l
        -static variables can be accessed in a codeblock even if this
         codeblock is a return value (detached static variables)
        -Harbour finds now illegal initializations of static variables
         (static variables can be initialized using literals only)
        -there is no 'redefinition of predefined function' error when the name
         of compiled source code is the same as reserved function
        -corrected support for /*******/ comments
        -Harbour distinguish now 'CASE' variable, 'CASE()' function and
         CASE statement (see tests/working/keywords.prg)

    * tests/working/keywords.prg
        -added many more wild statements to test Harbour compiler

    * test/working/statics.prg
        -added code to test access of static variables from a codeblock

    * source/rtl/extend.c
        -added brackets to avoid ambiguous if/else

    * source/include/extend.h
    * source/rtl/codebloc.c
        - added support for static variables in a codeblock


19990507-20:15 EDT David G. Holm <dholm@jsd-llc.com>
  * source/compiler/harbour.l
  * source/compiler/harbour.y
  * source/rtl/classes.c
    - Modified all three for C and C++ compatibility.
    - Tested with Borland C++ 3.1 in both C and C++ modes.

19990508-00:18 Eddie Runia
   * source/rtl/classes.c:
        oSend( <obj>, <cMessage>, <xArg,..> added.

Thu May 07 17:00:00 1999  Victor Szel <info@szelvesz.hu>

   * source/rtl/strings.c:
     Adapted changes by Matthew Hamilton <MHamilton@bunge.com.au>
     Some internal functions renamed
     long type changed to ULONG.

19990507-11:30 EDT David G. Holm <dholm@jsd-llc.com>
  * makefile.b31
    - added hbtools.lib
  * source/rtl/dates.c
    - added error handling supplied by Matthew Hamilton <MHamilton@bunge.com.au>
  * source/vm/hvm.c
    - changed call to hb_init_set() to InitializeSets() to match source/rtl/sets.c
  * tests/working/buildexe.bat
    - added hbtools.lib

19990507-09:55 Ryszard Glab <rglab@imid.med.pl>
    * source/rtl/files.c
    * source/rtl/set.c
    * source/rtl/transfrm.c
    * source/tools/stringsx.c
        -added compatibility with Watcom C/C++ compiler
         (char *) type castings

19990507-07:25 Ryszard Glab <rglab@imid.med.pl>

    * source/compiler/harbour.y, source/compiler/harbour.l
        -improoved support for BEGIN SEGEUENCE
        -added distinction between BEGIN command and begin variable
        -added distinction between BREAK command and break variable

    * tests/working/keywords.prg
        -new file to test if we are 100% compatible with Clipper

Thu May 06 18:12:15 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * config/win32/gcc.cf:
        Added (commented by now) linking agains the math library.

        * source/compiler/harbour.y:
        Now the -q option is REALLY quiet.

        * tests/working/Makefile:
        Added all of the tests to the Makefile.

Thu May 06 22:45:00 1999  Victor Szel <info@szelvesz.hu>

        * source/rtl/dates.c:
          Fix to STOD(), added error checking to DTOS(), the later can be
          disabled to make it faster.
        * source/vm/hvm.c, include/extend.h:
          strempty() -> hb_strempty(), declaration moved to .h
        * source/rtl/strings.c:
          hb_strempty() speed optimalization, cleanup.
        * source/vm/dynsym.c:
          OurStrUpr() -> hb_strupr()
          _strgreater -> hb_strgreater()
        * source/rtl/console.c:
          _outstd() -> hb_outstd()
        * source/tools/stringsx.c:
          StrToken() -> hb_strtoken()
        * source/rtl/strings.c:
          LTrim() -> hb_LTrim()
          RTrimLen() -> hb_RTrimLen()
          Lower() -> hb_Lower()
          Upper() -> hb_Upper()
          At() -> hb_At()
          Val() -> hb_Val()
        * source/vm/hvm.c, source/rtl/array.c, source/rtl/strcmp.c,
          include/extend.h
          OurStrCmp() -> hb_itemStrCmp()
        * source/rtl/*.c, source/include/extend.h
          julian2greg() -> hb_julian2greg()
          greg2julian() -> hb_greg2julian()
          Declaration moved to extend.h

Thu May 06 13:58:48 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * source/vm/hvm.c:
        Changed the prototype for ForceLink so that it is declared and
        defined as a static function.

Thu May 06 13:09:45 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * config/bin.cf:
        * config/c.cf:
        * config/lib.cf:
        * config/prg.cf:
        * config/test.cf:
        * source/rtl/Makefile:
        By mistake, we were not compiling the PRG files into OBJS for the
        rtl library.

        * source/rtl/dates.c:
        Changed the use of min with explicit code. min and max are macros
        in some platforms, functions in others, and it is usually a mess
        to link against them.

        * source/Makefile:
        * source/tools/Makefile:
        This directory was not being compiled.

        * source/tools/genobj.c:
        Got rid of most (all?) the warnings.

        * tests/working/Makefile:
        Now the libs to link against are explicitly specified in the
        Makefile.

        * tests/working/statics.prg:
        Cleaned up all ^M characters.

Thu May 06 12:34:45 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * source/compiler/harbour.l:
        * source/compiler/harbour.y:
        * source/rtl/set.c:
        Again, I renamed _AND and _OR to AND_ and OR_, and cleaned up a
        few warnings.

Wed May 05 18:51:06 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * include/ctoharb.h:
        * source/rtl/arrays.c:
        * source/rtl/files.c:
        * source/rtl/transfrm.c:
        * source/vm/dynsym.c:
        Replaced C++-style comments (//) with C-style commens (/* */).

Wed May 05 18:36:53 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * include/ctoharb.h:
        * include/dates.h:
        * include/extend.h:
        * include/init.h:
        * include/itemapi.h:
        * include/pcode.h:
        * include/set.h:
        * include/setcurs.ch:
        * include/types.h:
        * source/compiler/harbour.c:
        * source/compiler/harbour.l:
        * source/compiler/harbour.y:
        * source/rtl/arrays.c:
        * source/rtl/classes.c:
        * source/rtl/codebloc.c:
        * source/rtl/console.c:
        * source/rtl/dates.c:
        * source/rtl/environ.c:
        * source/rtl/errorapi.c:
        * source/rtl/extend.c:
        * source/rtl/files.c:
        * source/rtl/itemapi.c:
        * source/rtl/math.c:
        * source/rtl/set.c:
        * source/rtl/strcmp.c:
        * source/rtl/strings.c:
        * source/rtl/transfrm.c:
        * source/tools/datesx.c:
        * source/tools/genobj.c:
        * source/tools/io.c:
        * source/tools/mathx.c:
        * source/tools/stringsx.c:
        * source/vm/dynsym.c:
        * source/vm/hvm.c:
        Added a comment with the CVS Id keyword.

Wed May 05 18:28:28 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * makefile.b16:
        * makefile.b32:
        Added explicit rules to compile harbour.o from harbour.c.
        Don' know why these were necessary, but it seems people had
        problems without them.

Wed May 05 16:29:19 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * include/pcode.h:
        * source/vm/hvm.c:
        * source/compiler/harbour.y:
        Replaced _AND and _OR with AND_ and OR_.
        Under gcc, these two identifiers are defined out.
        Also, got rid of a few warnings.

        * source/rtl/files.c:
        Implemented a macro trick to allow compilation of
        FOPEN, FREAD and FWRITE.
        Turned off HAVE_POSIX_IO for gcc; it doesn't seem to work.
        Restructured the code so that when HAVE_POSIX_IO is not defined,
        there are no warnings.

Wed May 05 15:30:49 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * source/harbour.y:
        * source/compiler/harbour.c:
        Replaced main() with harbour_main(), and added a separate
        harbour.c with just the main() function.

        * makefile.b16:
        * makefile.b32:
        * makefile.vc:
        Updated these files to reflect the new source/compiler/harbour.c
        file.

        * .cvsignore:
        Added this file with the patterns CVS will ignore while
        processing.

        * config/bin.cf:
        * config/c.cf:
        * config/dir.cf:
        * config/global.cf:
        * config/install.cf:
        * config/lib.cf:
        * config/prg.cf:
        * config/test.cf:
        * config/win32/gcc.cf:
        * config/win32/global.cf:
        * config/win32/msvc.cf:
        * config/win32/rules.cf:
        * Makefile:
        * source/Makefile:
        * source/compiler/Makefile:
        * source/rtl/Makefile:
        * source/vm/Makefile:
        * tests/Makefile:
        This is the GNU-make based build system.

Wed May 05 09:24:22 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * include/Set.ch:
        * tests/working/block2.PRG:
        Added back these files. They can't be renamed through CVS on NT,
        and the repository will have to be updated by some other means.

Wed May 05 09:19:23 1999  Gonzalo A. Diethelm  <Gonzalo.Diethelm@jda.cl>

        * include/Set.ch:
        * tests/working/block2.PRG:
        Removed these files in preparation to move them to lowercase.

        * ChangeLog:
        Added this file.

May 31, 1999 Ron Pinkas
        Harbour.l modified {Array} and added {FunArray} and {ExpArray}.
        To fix support of <INDEX> state to be recusive as well as support:
        Function()[nIndex].

        /TESTS/WORKING/ArrIndex.prg added this file.

        /TESTS/BROKEN/FuncArr.prg added this file to show:

       // This is NOT working?
       QOut( aFunc()[1]

       // But this IS working!
       a := aFunc()
       QOut( a[1] )

May 31, 1999 Ron Pinkas
        Harbour.l added support for "[String]" inside ARRAY INDEX expressions.
        Added "Sysntax error :" message for the macro operator (&)
        when followed by a string delimiter.

June 1st. 1999 00:30 Ron Pinkas
        Harbour.y -> modified pcode generation to move the push of the counter variable to the NEXT rather than the FOR
        so loop code may manipulate the counter vaiable.

        TEST/WORKING/TestFor.prg -> added this file
   * 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 <culik@sl.conex.net>
   * utils/hbmake/hbmake.prg
    * small fix

2001-12-21 07:50 UTC-0300 Luiz Rafael Culik <culik@sl.conex.net>
  * 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
