Patches from Frith-MacDonald, Other misc.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2759 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 1998-02-26 17:55:42 +00:00
parent 7dfa15674f
commit 967c4944e2
21 changed files with 568 additions and 348 deletions

View file

@ -171,16 +171,13 @@ static BOOL debug_connected_coder = NO;
*/
- (void) _doEncodeObject: anObj
{
BOOL old = _is_by_copy;
id obj;
Class cls;
_is_by_copy = NO;
obj = [anObj replacementObjectForPortCoder: (NSPortCoder*)self];
cls = [obj classForPortCoder];
[self encodeClass: cls];
[obj encodeWithCoder: (NSCoder*)self];
_is_by_copy = old;
}
- (void) _doEncodeBycopyObject: anObj