an AESend with command-. (unless specifically disabled, of course).
static pascal Boolean AEIdleProc(EventRecord *theEvent, long *sleepTime, RgnHandle *mouseRgn)
{
- PyMac_Yield();
+ if ( PyOS_InterruptOccurred() )
+ return 1;
+ if ( PyMac_HandleEvent(theEvent) < 0 ) {
+ fprintf(stderr, "Exception in user event handler during AE processing\n");
+ PyErr_Clear();
+ }
return 0;
}
static pascal Boolean AEIdleProc(EventRecord *theEvent, long *sleepTime, RgnHandle *mouseRgn)
{
- PyMac_Yield();
+ if ( PyOS_InterruptOccurred() )
+ return 1;
+ if ( PyMac_HandleEvent(theEvent) < 0 ) {
+ fprintf(stderr, "Exception in user event handler during AE processing\\n");
+ PyErr_Clear();
+ }
return 0;
}