mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Bugfix for new runloop modifications
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@12207 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0cd7ecac14
commit
7ec92f15c5
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-01-24 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSRunLoop.m: Correct returns from within exception handler.
|
||||
* Source/NSUserDefaults.m: use NSDefaultRunLoopMode.
|
||||
|
||||
Mon Jan 21 17:08:42 2002 Nicola Pero <nicola@brainstorm.co.uk>
|
||||
|
||||
* Source/Makefile.postamble (after-uninstall): Removed GSConfig.h
|
||||
|
|
|
@ -1137,7 +1137,7 @@ const NSMapTableValueCallBacks ArrayMapValueCallBacks =
|
|||
printf ("\tNSRunLoop limit date past, returning\n");
|
||||
_current_mode = saved_mode;
|
||||
RELEASE(arp);
|
||||
return;
|
||||
NS_VOIDRETURN;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1317,7 +1317,7 @@ const NSMapTableValueCallBacks ArrayMapValueCallBacks =
|
|||
[self _checkPerformers];
|
||||
_current_mode = saved_mode;
|
||||
RELEASE(arp);
|
||||
return;
|
||||
NS_VOIDRETURN;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue