* Source/NSPropertyList.m (OAppend): Revert patch from

2005-02-28.  It seems to fix the issue in the wrong place.
        Further investigation is necessary.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21208 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2005-05-09 16:36:54 +00:00
parent 84af14b495
commit a5cf839255
2 changed files with 8 additions and 18 deletions

View file

@ -1,3 +1,9 @@
2005-05-09 David Ayers <d.ayers@inode.at>
* Source/NSPropertyList.m (OAppend): Revert patch from
2005-02-28. It seems to fix the issue in the wrong place.
Further investigation is necessary.
2005-05-09 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/AGSHtml.m: Output 'Releases' rather than 'Standards' as it

View file

@ -2041,24 +2041,8 @@ OAppend(id obj, NSDictionary *loc, unsigned lev, unsigned step,
}
else
{
NSString *desc;
volatile id plobj = nil;
desc = [obj description];
NS_DURING
{
plobj = [desc propertyList];
NSDebugLog(@"Non-property-list class (%@) "
@"encoded as description's property-list", cls);
}
NS_HANDLER
{
plobj = desc;
NSDebugLog(@"Non-property-list class (%@) "
@"encoded as string", cls);
}
NS_ENDHANDLER
OAppend(plobj, loc, lev, step, x, dest);
NSDebugLog(@"Non-property-list class (%@) encoded as string", cls);
PString([obj description], dest);
}
}
}