]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Continue looking for "open doc" events even after "open app". This
authorJack Jansen <jack.jansen@cwi.nl>
Fri, 10 Nov 1995 14:54:16 +0000 (14:54 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Fri, 10 Nov 1995 14:54:16 +0000 (14:54 +0000)
allows you to debug the interpreter in non-interactive mode.

Mac/Python/macgetargv.c

index 2fbb28e69b4c87bbe976e879aa595abaea444aa1..90cdb5a698df873237ea4585c8dd7c8c7df6d7bd 100644 (file)
@@ -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);
 }