From: Jack Jansen Date: Thu, 11 Jan 2001 23:04:32 +0000 (+0000) Subject: When compiling for GUSI and Carbon disable te "keep open on unseen output", for the... X-Git-Tag: v2.1a1~322 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=264630e85525c5bc475204cc1aaced00ab5ec2ff;p=python When compiling for GUSI and Carbon disable te "keep open on unseen output", for the time being. --- diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c index 298eb71a50..e3df287756 100644 --- a/Mac/Python/macmain.c +++ b/Mac/Python/macmain.c @@ -544,7 +544,7 @@ Py_Main(argc, argv) void PyMac_OutputSeen() { -#ifdef USE_GUSI +#if defined(USE_GUSI) && !TARGET_API_MAC_CARBON_NOTYET gusisioux_state = GUSISIOUX_STATE_LASTREAD; #endif } @@ -569,7 +569,7 @@ PyMac_Exit(status) keep = 0; break; case POPT_KEEPCONSOLE_OUTPUT: -#ifdef USE_GUSI +#if defined(USE_GUSI) && !TARGET_API_MAC_CARBON_NOTYET if (gusisioux_state == GUSISIOUX_STATE_LASTWRITE || gusisioux_state == GUSISIOUX_STATE_UNKNOWN ) keep = 1;