kernel32: Remove un-needed VK_DEL entries from the console keymap.

Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hugh McMaster 2015-11-23 20:58:38 +11:00 committed by Alexandre Julliard
parent bbe3c9cfbd
commit b1b05e62e9
1 changed files with 0 additions and 2 deletions

View File

@ -850,7 +850,6 @@ static const KeyEntry EmacsStdKeyMap[] =
{/*VK_HOME*/ 0x24, WCEL_MoveToBeg },
{/*VK_RIGHT*/0x27, WCEL_MoveRight },
{/*VK_LEFT*/ 0x25, WCEL_MoveLeft },
{/*VK_DEL*/ 0x2e, WCEL_DeleteCurrChar },
{/*VK_INSERT*/0x2d, WCEL_ToggleInsert },
{ 0, NULL }
};
@ -874,7 +873,6 @@ static const KeyEntry Win32StdKeyMap[] =
{/*VK_END*/ 0x23, WCEL_MoveToEnd },
{/*VK_UP*/ 0x26, WCEL_MoveToPrevHist },
{/*VK_DOWN*/ 0x28, WCEL_MoveToNextHist },
{/*VK_DEL*/ 0x2e, WCEL_DeleteCurrChar },
{/*VK_INSERT*/0x2d, WCEL_ToggleInsert },
{/*VK_F8*/ 0x77, WCEL_FindPrevInHist },
{ 0, NULL }