fixed #1796
This commit is contained in:
parent
f4abe3915e
commit
27b5bcfe5e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue