diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-11-10 14:54:16 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-11-10 14:54:16 (GMT) |
commit | dbe75ae1d37b66c8d76098fcd909ee1e5f217030 (patch) | |
tree | fbe5b158924ecc6484859aed8d931b97b1af58d5 /Mac/Python | |
parent | 38e976665d8a8b7c12bb0fc2ec96342f747332dd (diff) | |
download | cpython-dbe75ae1d37b66c8d76098fcd909ee1e5f217030.zip cpython-dbe75ae1d37b66c8d76098fcd909ee1e5f217030.tar.gz cpython-dbe75ae1d37b66c8d76098fcd909ee1e5f217030.tar.bz2 |
Continue looking for "open doc" events even after "open app". This
allows you to debug the interpreter in non-interactive mode.
Diffstat (limited to 'Mac/Python')
-rw-r--r-- | Mac/Python/macgetargv.c | 3 |
1 files changed, 3 insertions, 0 deletions
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 @@ 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); } |