Commit 63970cd1 authored by Jack Jansen's avatar Jack Jansen

Moved mac-specific exit handling to macmain.c

parent 02f27a4f
...@@ -45,14 +45,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -45,14 +45,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <signal.h> #include <signal.h>
#endif #endif
#ifdef THINK_C
#include <console.h>
#endif
#ifdef __MWERKS__
#include <SIOUX.h>
#endif
#ifdef NT #ifdef NT
#undef BYTE #undef BYTE
#include "windows.h" #include "windows.h"
...@@ -670,20 +662,11 @@ goaway(sts) ...@@ -670,20 +662,11 @@ goaway(sts)
} }
#endif /* TRACE_REFS */ #endif /* TRACE_REFS */
/* XXXX Jack thinks it would be nicer to pause if any output has #ifdef macintosh
** been generated since the last interaction with the user... PyMac_Exit(sts);
*/ #else
#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
exit(sts); exit(sts);
#endif
#endif /* WITH_THREAD */ #endif /* WITH_THREAD */
/*NOTREACHED*/ /*NOTREACHED*/
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment