From cc9d866f7da784cbef0809d42dcf654ee0ff6f21 Mon Sep 17 00:00:00 2001 From: richard Date: Wed, 15 Jul 1998 12:55:25 +0000 Subject: [PATCH] Multiple updates - bug fixes. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2853 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/ChangeLog b/ChangeLog index cb49715b1..0e73a222a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,58 @@ +Wed Jul 15 12:45:00 1998 Richard Frith-Macdonald + + * src/Invocation.m: Rewrote ([-invoke]) to retrieve return values + correctly by using mframe_decode_return() + + * src/NSCharacterSet.m: Fixed ([-copyWithZone:]) to avoid using the + (non-existant) NSObject method. + + * src/NSFileHandle.m: Modified method for making socket connections + and added a synchronous version. + + * src/NSObjCRuntime.m: Tidied and added NSGetSizeAndAlignment(). + + * src/NSObject.m: Removed ([-copyWithZone:]) and + ([-mutableCopyWithZone:]) (which shiould not exist in NSObject). + + * src/NSString.m: Fixed implementation of the + ([-rangeOfCharacterFromSet:options:range:]) method. + + * src/UnixFileHandle.m: Various bug fixes for synchronous operations. + + * src/mframe.m: Added mframe_decode_return() function to get the + return value out of a retframe. + + * src/include/NSCharacterSet.h: Modified to say we conform to the + NSCoding protocol (whith the spec says we should). + + * src/include/NSFileHandle.h: Altered methods for making a network call. + + * src/include/NSObjCRuntime.h: Added NSGetSizeAndAlignment(). + + * src/include/NSObject.h: Removed stuff saying we conform to the + NSCoding and NSCopying protocols (we shouldn't) and removed the + ([-copyWithZone:]) and ([-mutableCopyWithZone:]) methods - which + shouldn't be there. + + * src/include/UnixFileHandle.h: Altered methods for making a network + connection. + + * src/include/mframe.h: Added mframe_decode_return() function. + + +Tue Jul 14 16:06:16 1998 Masatake Yamato + + * checks/invocation_*.m : New test files. + + * checks/invocation2.m: Removed the file. + + * src/include/NSInvocation.h (NS_INVOCATION, NS_MESSAGE): + Added new arguments to the macros. These macros don't require + SEL type argument to specify the method to invoke now. + + * checks; Added invocation_char.m, invocation_short.m, invocation_int.m + and invocation_long.m + Fri Jul 10 21:43:30 1998 Adam Fedor * src/include/GapArrayPrivate.h (gapMoveGaptTo): Change - to +.