Fix US layout

The right bracket used the wrong character and the "pipe" was missing.

Fixes #241.
This commit is contained in:
Josef Söntgen 2012-06-09 16:51:52 +02:00 committed by Norman Feske
parent ae41acec27
commit cb8cbe8aad
1 changed files with 3 additions and 3 deletions

View File

@ -1053,8 +1053,8 @@ enum {
static unsigned char usenglish_keymap[128] = {
0 ,ESC,'1','2','3','4','5','6','7','8','9','0','-','=', BS,TAB,
'q','w','e','r','t','y','u','i','o','p','[','}', LF, 0 ,'a','s',
'd','f','g','h','j','k','l',';','\'','`', 0 , 0 ,'z','x','c','v',
'q','w','e','r','t','y','u','i','o','p','[',']', LF, 0 ,'a','s',
'd','f','g','h','j','k','l',';','\'','`', 0, '\\' ,'z','x','c','v',
'b','n','m',',','.','/', 0 , 0 , 0 ,' ', 0 , 0 , 0 , 0 , 0 , 0 ,
0 , 0 , 0 , 0 , 0 , 0 , 0 ,'7','8','9','-','4','5','6','+','1',
'2','3','0',',', 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,
@ -1072,7 +1072,7 @@ static unsigned char usenglish_shift[256 - 32] = {
/* 32 */ ' ', 0 , 0, 0 , 0 , 0 , 0 ,'"', 0 , 0 , 0 , 0 ,'<','_','>','?',
/* 48 */ ')','!','@','#','$','%','^','&','*','(', 0 ,':', 0 ,'+', 0 , 0 ,
/* 64 */ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,
/* 80 */ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,'{', 0 ,'}', 0 , 0 ,
/* 80 */ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,'{','|','}', 0 , 0 ,
/* 96 */ '~','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O',
/* 112 */ 'P','Q','R','S','T','U','V','W','X','Y','Z', 0 ,'\\', 0 , 0 , 0 ,
};