From: Guido van Rossum Date: Tue, 20 May 1997 15:57:49 +0000 (+0000) Subject: Logic for enabling mac-specific signal handling fixed (Jack) X-Git-Tag: v1.5a3~527 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df0d00e29b45453f2929a5fe02aef4a5bf1998b1;p=python Logic for enabling mac-specific signal handling fixed (Jack) --- diff --git a/Python/ceval.c b/Python/ceval.c index 032b14da96..ead65b91fb 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -569,7 +569,7 @@ eval_code2(co, globals, locals, goto on_error; } } -#if !defined(HAVE_SIGNAL_H) && !defined(macintosh) +#if !defined(HAVE_SIGNAL_H) || defined(macintosh) /* If we have true signals, the signal handler will call Py_AddPendingCall() so we don't have to call sigcheck(). On the Mac and