FreeDOS Edit 0.6d

Based on DFLAT TUI toolkit as described in Dr. Dobbs Journal (DDJ)
See DFLAT.TXT for more information.

Compiling:
Tested with Borland's Turbo C 2.01 (TC2), Turbo C++ 1.01 (TC++1), 
Turbo C/C++ 3.0 (TC3), and Borland C/C++ 3.1 (TC3/BC3)
Should also work with later versions.

QUICKSTART:
- flicker control in video.c used assembly language, removed this.
  TASM is no longer needed.
- calendar "day of week" calculations and other mktime() things
  are now done by a builtin function. Turbo C 2.01 did not have
  mktime and you had to compile without calendar there formerly.
  The strftime() function is no longer necessary either.
- some key bindings were changed to work with plain BIOS drivers.

Details:

To compile, 1st edit MAKEFILE to match your compiler, followed by
running 'make'.  You may wish to then run clean to remove object
files and lib files, the executables (*.exe) will still be available.
(If compiling with TC3 or earlier? under NT, you may need to ensure
your environment space is not to cluttered, i.e. unset unneeded
environment variables, e.g. 'set PROCESSOR_IDENTIER=', etc. before make.)

Once compiled you may wish to compress with an executable compressor
such as UPX.  If upx.exe is in your path, after make or instead of
'make all' you may run 'make upx' to build and then compress edit.exe


Known Issues:

- When writing a file, tabs are converted to spaces.
- The beep() function in console.c produces warnings with TC3 if outp
  macro is defined (you can #undef outp to remove them for TC3, but
  TC++1 does not have an outp function only the macro).
- See http://www.freedos.org/bugs/bugzilla/ for more bugs or to report a bug.
- No support for Ctrl-Del / Alt-BackSpace currently (0.6* series).

20021129 (describing 0.5d)
20031118 (describing 0.6b)
20031128 (describing 0.6c)
20031129 (describing 0.6d)
