]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Fix ignoring of set1 extended sequences
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 22 Aug 2010 23:44:54 +0000 (01:44 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sun, 22 Aug 2010 23:44:54 +0000 (01:44 +0200)
term/at_keyboard.c

index b8df4cbf3ce65ed7c80daa434fbec459f9c6a8c2..ff9f713c668d2aeb77dacfda781aa7ca07a1cf45 100644 (file)
@@ -350,7 +350,7 @@ fetch_key (int *is_break)
        {
          unsigned 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;
                break;