mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Fix for bug #38017
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36007 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b659603cb9
commit
82c51f73a4
2 changed files with 4 additions and 3 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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])
|
||||
|
|
Loading…
Reference in a new issue