diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-07-29 13:55:06 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-07-29 13:55:06 +0000 |
commit | c9fb717fecd7a6ca822139cdcdb9feeeef3554f6 (patch) | |
tree | 8e18a4a73614839001b7c2a4e7575a63cf32d3ad /Python/pythonrun.c | |
parent | ee8e3b8c94ead200aafedadf084552013638cd51 (diff) | |
download | cpython-c9fb717fecd7a6ca822139cdcdb9feeeef3554f6.tar.gz |
mac CW-only fix for messy windows upon exit
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index f0875454e2..d30423189f 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -678,7 +678,7 @@ goaway(sts) if (sts == 0) SIOUXSettings.autocloseonquit = 1; else - SIOUXSettings.showstatusline = 1; + printf("\n[Terminated]\n"); #endif exit(sts); #endif /* WITH_THREAD */ |