mirror of
https://github.com/tmate-io/tmate.git
synced 2024-12-23 23:29:15 +01:00
When converting A-Z into a control character, want to subtract 64 not
65... whoops.
This commit is contained in:
parent
261b6b8615
commit
6769115df2
@ -155,7 +155,7 @@ key_string_lookup_string(const char *string)
|
||||
if (key >= 97 && key <= 122)
|
||||
key -= 96;
|
||||
else if (key >= 65 && key <= 90)
|
||||
key -= 65;
|
||||
key -= 64;
|
||||
else if (key == 32)
|
||||
key = 0;
|
||||
else if (key == 63)
|
||||
|
Loading…
Reference in New Issue
Block a user