summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-02-02 14:30:20 +0000
committerJack Jansen <jack.jansen@cwi.nl>1995-02-02 14:30:20 +0000
commitf28528813d1cf5db507ad71b1fc87b3dcdf3fb93 (patch)
tree330bca6a8400312fb16ec4336e9a563781a92d13 /Python/pythonrun.c
parent9251e5b9ea867bf71ea810e890f593d69b8fc60c (diff)
downloadcpython-f28528813d1cf5db507ad71b1fc87b3dcdf3fb93.tar.gz
Under CodeWarrior, make the window go away on exit(0)
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 980f2edee4..c0214fc1e5 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -48,6 +48,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <console.h>
#endif
+#ifdef __MWERKS__
+#include <SIOUX.h>
+#endif
+
extern char *getpythonpath();
extern grammar gram; /* From graminit.c */
@@ -641,10 +645,17 @@ 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;
+#endif
exit(sts);
#endif /* WITH_THREAD */
/*NOTREACHED*/