diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-03-25 15:46:03 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-03-25 15:46:03 (GMT) |
commit | 415571cc9f2ab94396d318ca25b6f369c66f2bf6 (patch) | |
tree | 8225d33a5b88c42fb049c3ab6589927302e09de0 /Mac/Python/macmain.c | |
parent | e6dde149e7e23cd87946fbff9d10f34a1f425768 (diff) | |
download | cpython-415571cc9f2ab94396d318ca25b6f369c66f2bf6.zip cpython-415571cc9f2ab94396d318ca25b6f369c66f2bf6.tar.gz cpython-415571cc9f2ab94396d318ca25b6f369c66f2bf6.tar.bz2 |
Replaced non-ascii chars by backslash escapes
Diffstat (limited to 'Mac/Python/macmain.c')
-rw-r--r-- | Mac/Python/macmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c index 7b8692e..8d3fe28 100644 --- a/Mac/Python/macmain.c +++ b/Mac/Python/macmain.c @@ -388,7 +388,7 @@ PyMac_Exit(status) if (keep) { SIOUXSettings.standalone = 1; SIOUXSettings.autocloseonquit = 0; - SIOUXSetTitle("\p«terminated»"); + SIOUXSetTitle("\p\307terminated\310"); } else SIOUXSettings.autocloseonquit = 1; |