comment last change

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39652 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2016-04-08 17:32:07 +00:00
parent 3288084adf
commit bb6de3370f

View file

@ -84,6 +84,10 @@ static NSString* (*abrIMP)(id, SEL, id);
static NSString* (*absAbrIMP)(id, SEL, id);
static NSString* (*dstAbrIMP)(id, SEL, id);
/* Do not fetch the default locale unless we actually need it.
* Tries to avoid recursion when loading NSUserDefaults containing dates.
* This is also a little more efficient with many date formats.
*/
#define LOCALE (nil == locale ? (locale = GSPrivateDefaultLocale()) : locale)