More localisation fixes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@9733 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2001-04-28 05:53:56 +00:00
parent 7e4a1c54de
commit a70dd0619f
4 changed files with 250 additions and 95 deletions

View file

@ -89,13 +89,11 @@ void
NSLogv (NSString* format, va_list args)
{
static NSRecursiveLock *myLock = nil;
NSAutoreleasePool *arp;
CREATE_AUTORELEASE_POOL(arp);
NSString *prefix;
NSString *message;
int pid;
arp = [NSAutoreleasePool new];
if (_NSLog_printf_handler == NULL)
_NSLog_printf_handler = *_NSLog_standard_printf_handler;
@ -134,6 +132,6 @@ NSLogv (NSString* format, va_list args)
[myLock unlock];
[arp release];
RELEASE(arp);
}