diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-07-29 13:55:06 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-07-29 13:55:06 (GMT) |
commit | 21eb0b56a85958982cbf145e0befccffdde64911 (patch) | |
tree | dc93a0d4c1b2dce32f42c19060cbcc66661a09a7 /Python | |
parent | b7d0df4a91fd89cb63c12b843eb8dd3dc11ea9cb (diff) | |
download | cpython-21eb0b56a85958982cbf145e0befccffdde64911.zip cpython-21eb0b56a85958982cbf145e0befccffdde64911.tar.gz cpython-21eb0b56a85958982cbf145e0befccffdde64911.tar.bz2 |
mac CW-only fix for messy windows upon exit
Diffstat (limited to 'Python')
-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 f087545..d304231 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 */ |