Fix ignoring of set1 extended sequences
This commit is contained in:
parent
9e91bd9d9a
commit
b88904ca7f
1 changed files with 1 additions and 1 deletions
|
@ -350,7 +350,7 @@ fetch_key (int *is_break)
|
||||||
{
|
{
|
||||||
unsigned i;
|
unsigned i;
|
||||||
for (i = 0; i < ARRAY_SIZE (set1_e0_mapping); i++)
|
for (i = 0; i < ARRAY_SIZE (set1_e0_mapping); i++)
|
||||||
if (set1_e0_mapping[i].from == (at_key & 0x80))
|
if (set1_e0_mapping[i].from == (at_key & 0x7f))
|
||||||
{
|
{
|
||||||
ret = set1_e0_mapping[i].to;
|
ret = set1_e0_mapping[i].to;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue