From 66a8977b0ef3b7c3a3b8027d9ee3f25417b824e9 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Fri, 27 Oct 1995 13:22:14 +0000 Subject: Moved mac-specific exit handling to macmain.c --- Python/pythonrun.c | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 9e402a6..13e2728 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -45,14 +45,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include #endif -#ifdef THINK_C -#include -#endif - -#ifdef __MWERKS__ -#include -#endif - #ifdef NT #undef BYTE #include "windows.h" @@ -670,20 +662,11 @@ goaway(sts) } #endif /* TRACE_REFS */ - /* XXXX Jack thinks it would be nicer to pause if any output has - ** been generated since the last interaction with the user... - */ -#ifdef THINK_C - if (sts == 0) - console_options.pause_atexit = 0; -#endif -#ifdef __MWERKS__ - if (sts == 0) - SIOUXSettings.autocloseonquit = 1; - else - printf("\n[Terminated]\n"); -#endif +#ifdef macintosh + PyMac_Exit(sts); +#else exit(sts); +#endif #endif /* WITH_THREAD */ /*NOTREACHED*/ } -- cgit v0.12