From: Jack Jansen Date: Fri, 10 Nov 1995 14:54:16 +0000 (+0000) Subject: Continue looking for "open doc" events even after "open app". This X-Git-Tag: v1.4b1~493 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dbe75ae1d37b66c8d76098fcd909ee1e5f217030;p=thirdparty%2FPython%2Fcpython.git Continue looking for "open doc" events even after "open app". This allows you to debug the interpreter in non-interactive mode. --- diff --git a/Mac/Python/macgetargv.c b/Mac/Python/macgetargv.c index 2fbb28e69b4c..90cdb5a698df 100644 --- a/Mac/Python/macgetargv.c +++ b/Mac/Python/macgetargv.c @@ -199,7 +199,10 @@ static pascal OSErr handle_open_app(AppleEvent *theAppleEvent, AppleEvent *reply, long refCon) { #pragma unused (reply, refCon) +#if 0 + /* Test by Jack: would removing this facilitate debugging? */ got_one = 1; +#endif return get_missing_params(theAppleEvent); }