git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36007 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2013-01-21 10:15:17 +00:00
parent b659603cb9
commit 82c51f73a4
2 changed files with 4 additions and 3 deletions

View file

@ -2,6 +2,9 @@
* Source/NSLocale.m: ([-_getExemplarCharacterSet]) Fix error in handling
returned range (bug #38118 reported by X Y <macgritsch>
* Source/NSPropertyList.m: Fix encoding of date objects when using the
OpenStep format to simply used the description of the3 date.
Fixes bug #38017
2013-01-14 Richard Frith-Macdonald <rfm@gnu.org>

View file

@ -1978,9 +1978,7 @@ OAppend(id obj, NSDictionary *loc, unsigned lev, unsigned step,
}
else
{
obj = [obj descriptionWithCalendarFormat: @"%Y-%m-%d %H:%M:%S %z"
timeZone: z locale: nil];
PString(obj, dest);
PString([obj description], dest);
}
}
else if ([obj isKindOfClass: NSArrayClass])