diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-17 12:35:13 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-05-17 12:35:13 (GMT) |
commit | dfebe90c4c04a7a36e4542907118ddce97085868 (patch) | |
tree | 98f4b888c92d32b011a336ed914d381853585cac /Mac/Tools/IDE/Wwindows.py | |
parent | 716cf918390f86c69fb1525e13273570521da759 (diff) | |
download | cpython-dfebe90c4c04a7a36e4542907118ddce97085868.zip cpython-dfebe90c4c04a7a36e4542907118ddce97085868.tar.gz cpython-dfebe90c4c04a7a36e4542907118ddce97085868.tar.bz2 |
Fixed macroman<->latin1 conversion. Some characters don't exist in latin1, but at least the roundtrip gives
the correct macroman characters again.
Diffstat (limited to 'Mac/Tools/IDE/Wwindows.py')
-rw-r--r-- | Mac/Tools/IDE/Wwindows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Tools/IDE/Wwindows.py b/Mac/Tools/IDE/Wwindows.py index 2d449c7..e16c647 100644 --- a/Mac/Tools/IDE/Wwindows.py +++ b/Mac/Tools/IDE/Wwindows.py @@ -568,7 +568,7 @@ def FrontWindowInsert(stuff): pass import EasyDialogs if EasyDialogs.AskYesNoCancel( - "Can¹t find window or widget to insert text into; copy to clipboard instead?", + "CanÕt find window or widget to insert text into; copy to clipboard instead?", 1) == 1: import Scrap Scrap.ZeroScrap() |