mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 09:02:01 +00:00
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:
parent
b5656e0ed2
commit
5176256189
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue