This commit is contained in:
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 2010-09-03 19:05:19 +00:00
parent f4abe3915e
commit 27b5bcfe5e

View file

@ -51,7 +51,7 @@ def read_char(s):
return "^"+chr(first + 64)
if first == 27:
(first, c) = get_next_byte(s)
return "M-"+c
return "M-"+chr(first)
if 194 <= first:
(code, c) = get_next_byte(s) # 2 bytes char
char += c