From d56c10927237a51041f89c73cc64a9e5620c5aab Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Fri, 27 Jan 1995 14:44:16 +0000 Subject: Changed the way mac mainloop event checking is turned off --- Modules/stdwinmodule.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Modules/stdwinmodule.c b/Modules/stdwinmodule.c index 5ca798f..b256695b 100644 --- a/Modules/stdwinmodule.c +++ b/Modules/stdwinmodule.c @@ -104,7 +104,9 @@ static type_lock StdwinLock; /* Lock held when interpreter not locked */ static object *StdwinError; /* Exception stdwin.error */ -int StdwinIsActive; /* True as soon as stdwin imported */ +#ifdef macintosh +#include "macglue.h" +#endif /* Window and menu object types declared here because of forward references */ @@ -2605,6 +2607,7 @@ initstdwin() if (!inited) { #ifdef macintosh winit(); + PyMac_DoYieldEnabled = 0; #else char buf[1000]; int argc = 0; @@ -2633,7 +2636,6 @@ initstdwin() } #endif inited = 1; - StdwinIsActive = 1; } m = initmodule("stdwin", stdwin_methods); d = getmoduledict(m); -- cgit v0.12