Remove bogus newline generated for bool

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21782 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2005-10-07 09:21:51 +00:00
parent b5656e0ed2
commit 5176256189
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2005-10-07 Chris Vetter <cbv@gmx.net>
* Source/NSPropertyList.m: Remove bogus newline generated for BOOL.
2005-10-06 Adam Fedor <fedor@gnu.org> 2005-10-06 Adam Fedor <fedor@gnu.org>
* Source/NSPage.m: Add include for Cygwin (patch from * Source/NSPage.m: Add include for Cygwin (patch from

View file

@ -1590,7 +1590,7 @@ OAppend(id obj, NSDictionary *loc, unsigned lev, unsigned step,
} }
else if (x == NSPropertyListGNUstepFormat) else if (x == NSPropertyListGNUstepFormat)
{ {
[dest appendBytes: "<*BY>\n" length: 6]; [dest appendBytes: "<*BY>" length: 5];
} }
else else
{ {
@ -1605,7 +1605,7 @@ OAppend(id obj, NSDictionary *loc, unsigned lev, unsigned step,
} }
else if (x == NSPropertyListGNUstepFormat) else if (x == NSPropertyListGNUstepFormat)
{ {
[dest appendBytes: "<*BN>\n" length: 6]; [dest appendBytes: "<*BN>" length: 5];
} }
else else
{ {