summaryrefslogtreecommitdiff
path: root/tcvt.py
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2011-07-22 18:08:41 +0200
committerHelmut Grohne <helmut@subdivi.de>2011-07-22 18:08:41 +0200
commit6a67b1df8cc3e01f348e2754e7b79e911dbf3018 (patch)
tree0dc00bf865378165e0e0ba6979544965c6f9e230 /tcvt.py
parent54fa35a19efe3b9c5c5cac78c7f3982d1b6e7c98 (diff)
downloadtcvt-6a67b1df8cc3e01f348e2754e7b79e911dbf3018.tar.gz
pass through \xb4 (some tick) and \xe9 (accent e)
Diffstat (limited to 'tcvt.py')
-rwxr-xr-xtcvt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcvt.py b/tcvt.py
index 99a332f..e9e35f8 100755
--- a/tcvt.py
+++ b/tcvt.py
@@ -289,7 +289,7 @@ class Terminal:
self.addch(ord(char))
elif char in '0123456789@:~$ .#!/_(),[]=-+*\'"|<>%&\\?;`^{}':
self.addch(ord(char))
- elif char in '\xb6\xb7\xc3\xc4\xd6\xdc\xe4\xfc\xf6':
+ elif char in '\xb4\xb6\xb7\xc3\xc4\xd6\xdc\xe4\xe9\xfc\xf6':
self.addch(ord(char))
elif char == '\r':
self.screen.relmove(0, -9999)