Abort properly on exception.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4634 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1999-07-23 10:39:20 +00:00
parent 9520ed3a06
commit f7c5413b7d
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Fri Jul 23 11:45:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* Tools/gpbs.m: In ihandler() reset signal handler.
1999-07-22 Michael Hanni <mhanni@sprintmail.com>
* Source/NSMenuView.m: some fixes to get things to work correctly

View file

@ -949,6 +949,7 @@ NSMutableDictionary *pasteboards = nil;
static int
ihandler(int sig)
{
signal(sig, SIG_DFL);
abort();
}