diff --git a/ChangeLog b/ChangeLog index 603044bb7..3d2307759 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,30 @@ +Wed Sep 25 18:32:14 1996 Scott Christley + + * src/include/config-win32.sed: Delete file. + * src/include/config-win32.h: Changes for new config.h.in. + * configure.bat: Changes for new config.h.in. + * src/Makefile.sed.nt: Changes for new config.h.in. Make sure + preface.h is created before creating gnustep/base directory. + * src/NSUserDefaults.m: Don't include header file for Win32. + * src/Time.m: Specialized time routines for Win32. + + * src/Makefile.in (distclean): Remove generated files. + * admin/example.patch: Remove CVS keywords. + * src/NXStringTable.m: Likewise. + * src/dld-load.h: Likewise. + * src/hpux-load.h: Likewise. + * src/include/objc-load.h: Likewise. + * src/null-load.h: Likewise. + * src/objc/NXStringTable.h: Likewise. + * src/simple-load.h: Likewise. + +Fri Oct 25 18:42:45 1996 Andrew McCallum + + * src/NSSet.m ([NSSet -anyObject]): Implemented. + + * src/NSDictionary.m ([NSDictionary + +dictionaryWithObjectsAndKeys:]): New method. + Wed Sep 25 08:47:33 1996 Andrew McCallum * Version (SUBMINOR_VERSION): Version 0.2.10. diff --git a/Source/ostream.m b/Source/ostream.m index 23208633b..d0dc05c29 100644 --- a/Source/ostream.m +++ b/Source/ostream.m @@ -323,7 +323,7 @@ ostream_close_memory (ostream *s, int option) { if (s->flags & OSTREAM_ISBUFFER) { - if (option == OSTREAM_FREEBUFFER) + if (option == OSTREAM_SAVEBUFFER) [(MemoryStream*)s->stream_obj setFreeWhenDone: NO]; } ostream_close(s);