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 2fbb28e..90cdb5a 100644
--- a/Mac/Python/macgetargv.c
+++ b/Mac/Python/macgetargv.c
@@ -199,7 +199,10 @@
 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);
 }