Thu Jul 20 09:42:44 1989  Doug Lea  (dl at g.oswego.edu)

        * adapted more C-compatibility .h files from Interviews

Wed Jul 19 09:23:27 1989  Doug Lea  (dl at g.oswego.edu)

        * installed more C-compatibilty files: pwd.h, grp.h time.h

Mon Jul 17 07:37:35 1989  Doug Lea  (dl at g.oswego.edu)

        * installed Interviews/et++ compatible (I hope) signal.h

        * installed new version of gperf from schmidt

        * std.h: declared abort() and exit() as volatile

        * builtin.cc: typo in gcd

        * math.h: added overload decl for atan, etc

        * VHMap.cc: removed assumption that operator = returns value.

        * Makefiles: default dir is /usr/gnu/... not /usr/local

        * setjmp.h: fixed constants for sun to match those in
        sun /usr/include files, added ns32000

        * BSTSet.ccP added new linear-time rebalancing algorithm

        * builtin.cc: SYSV versions of timing stuff from ron cole

        * File.{h,cc} fixed File::tell, added O_CREAT to exclusive 
        access open, added fill(), flush(char).

        * incorporated new streams: stream.{h,cc}, streambuf.{h, cc},
        libg++.texinfo


Sat May 20 07:42:11 1989  Doug Lea  (dl at rocky.oswego.edu)

        * math.h,math-68881.h: incorporated Fyfe's fixes to extern "C" problems

Tue May 16 05:52:33 1989  Doug Lea  (dl at rocky.oswego.edu)

        * RNG.cc ifdef _IEEE_ fixed to if _IEEE == 1

        * Installed Staelin's prototype Makefile updates

Mon May 15 06:25:12 1989  Doug Lea  (dl at rocky.oswego.edu)

        * BitString.h: g++ optimizer bug workaround in left_trim

        * math-68881.h - fgetman (not fgetmant) fix from widen

Sat May 13 11:00:35 1989  Doug Lea  (dl at rocky.oswego.edu)

        * changes from tiemann for constructs of form X::f() 
        changed to this->X::f(), necessary now that static members
        are implemented. [postscript: no, it wasn't necessary]

        * libg++.texinfo: misc documentation updates

Fri May 12 05:06:06 1989  Doug Lea  (dl at rocky.oswego.edu)

        * (lots of places) added  friends and other minor changes
        to adapt to new ``correct'' (but losing) g++ interpretation
        of `protected:'

        * re-inserted `overload' in .h files -- tiemann
        says that gdb needs these for now

        * stream.cc: eatwhite was inline by mistake. fixed.

Thu May 11 07:31:06 1989  Doug Lea  (dl at rocky.oswego.edu)

        * List.ccP: initializer class for Nil, since can't always use 
        { ... } initializer. Also made `head' a synonym for `get',
        per request.

        * installed changes to etc files from schmidt

        * String.cc Scopy: return &NilSrep, not 0 for null

        * added math-68881.h to g++-include (from grunwald)

Sun May  7 08:38:10 1989  Doug Lea  (dl at rocky.oswego.edu)

        * catch-up day!:
        converted header files to use extern "C" and #pragma once
        killed `overload' declarations everywhere
        renamed test files
        added the beginnings of SYSV (USG) support
        included some useful stuff for Suns in top Makefile (from  Guilmette)
        cleaned up other Makefiles
        added File::gets (from Schmidt)
        moved gperf from etc to a top level subdir
        added the useless char* chr(ch) to builtin.h
        genclass puts dots in file names to use Staelins GNU Makefile stuff
        (also added his `prepend-header' utility)
        added Schmidt's getopt stuff into etc.
        New versions of fixpoint classes from Baudendistel
        (needed to change set_overflow_handler to
        set_{FixXX}_overflow_handler
        for each FixXX, since overloads clash on typedef'ed fn types)
        Adapted Schmidt's new quicksort for Vec class
        
Fri Apr 28 16:26:17 1989  Doug Lea  (dl at rocky.oswego.edu)

        * ACG.cc: fixed ~ACG per grunwald

Thu Apr 20 05:22:46 1989  Doug Lea  (dl at rocky.oswego.edu)

        * List.hP: first for nil list now returns null Pix

        * Integer.cc: rshift fixed problem with 0 shifts

Mon Apr 10 05:17:04 1989  Doug Lea  (dl at rocky.oswego.edu)

        * stream.h, PlotFile.h added explicit `private' for subclasses

Sat Mar 18 06:08:30 1989  Doug Lea  (dl at rocky.oswego.edu)

        * String.[h,cc]: added Regex::match_info

Fri Mar 17 14:37:12 1989  Doug Lea  (dl at rocky.oswego.edu)

        * stream.h: istream >> char now eats whitespace.

        * builtin.h: overloaded `even', `odd'

Thu Mar  9 06:43:43 1989  Doug Lea  (dl at rocky.oswego.edu)

        * Map.ccP: typo in Map::contents <T> => <C>

        * stdio.h : inserted coercion in putc macro to avoid incorrect
          sign extension.

Tue Mar  7 05:35:52 1989  Doug Lea  (dl at rocky.oswego.edu)

        * List.hP: List::push no longer incorrectly calls dereference

        * Inserted patches to etc stuff from Doug Schmidt

Sun Mar  5 07:57:01 1989  Doug Lea  (dl at rocky.oswego.edu)

        * stream.h: added File::check_state to public functions

        * BitSet.cc: longtoBitSet: Fixed typo 

Sat Mar  4 10:06:24 1989  Doug Lea  (dl at rocky.oswego.edu)

        * installed CursesWindow files

        * miscellaneous corrections to test files in light of
          g++-1.34 changes

Fri Mar  3 06:07:37 1989  Doug Lea  (dl at rocky.oswego.edu)

        * incorporated new version of Doug Schmidt's gperf

        * BitString.cc: fixed reverse searching

Sun Feb 26 05:44:28 1989  Doug Lea  (dl at rocky.oswego.edu)

        * assert : killed old assert.cc, adapted gcc assert.h

Sat Feb 25 09:23:35 1989  Doug Lea  (dl at rocky.oswego.edu)

        * tests, libg++.texinfo: miscellaneous updates

        * stddef.h NULL is now just `0', not (void*)0

        * Makefile: added `prefix' as in g++ Makefile

        * put a new c++-mode.el from david detlefs in etc

        * BitString.[h,cc] BitSet[h,cc] now use unsigned short arrays instead
          of unsigned longs to avoid long i; i >> 32, which does not
          work on Sun4s and probably other machines. Simplified
          a few shift & mask constructs accordingly.

        * values.h, libconfig.h: support for sequent from
          Johan Widen <mcvax!sics.se!jw@uunet.UU.NET>

        * Fix.h: repaired type mismatches

        * String.[cc,h] gsub now returns number of matches

        * String.cc gsub(Regex...): repaired using patches 
          from kadmon!jason@mtxinu.com

        * stream.h scan didn't return *this if fail -- fixed.

        * File.cc get(char*...): get of an empty line not a _fail condition

        * RNG.[h,cc] installed new code from grunwald


Tue Feb  7 05:53:23 1989  Doug Lea  (dl at rocky.oswego.edu)

        * Integer.h,cc Added optional base to atoI via code from per bothner

        * String.h,cc Added `freq' method in String to count occurrences
          using code from john willis

Mon Feb  6 07:25:06 1989  Doug Lea  (dl at rocky.oswego.edu)

        * BitSet.cc:op <=, < now work if first arg shorter than second;
                       clear() fixed.
        * stream.h, stream.cc: made ostream<<(char*) non-inline

Sun Feb  5 05:31:36 1989  Doug Lea  (dl at rocky.oswego.edu)

        * test19.cc: typo c.empty fixed to c.empty()

Tue Jan 31 05:51:36 1989  Doug Lea  (dl at rocky.oswego.edu)

        * String.h: contains(Regex) return fact that search returns >= 0,
        not just raw result.

        * Fix.h: correct protection problem in op* 

        * replace regex.c with emacs 18.52 version

Fri Jan 27 06:29:20 1989  Doug Lea  (dl at rocky.oswego.edu)

        * AVLSet.ccP, AVLMap.ccP - check to see if root
          is null before trying to delete elements

        * libg++/Makefile - change install of libg++ to cd to src

Sat Jan 14 06:03:33 1989  Doug Lea  (dl at rocky.oswego.edu)

        * fixed info node pointers in libg++.texinfo

Wed Jan 11 06:20:37 1989  Doug Lea  (dl at rocky.oswego.edu)

        * libg++-1.32.0 released
        * Starting to use ChangeLog as of today

