Correct behaviour of DEL key back to deleting the current character.

oldstable
Jason Edmeades 2002-05-01 18:04:36 +00:00 committed by Alexandre Julliard
parent 7ec04452a1
commit e6bdef2a41
1 changed files with 1 additions and 1 deletions

View File

@ -664,7 +664,7 @@ static KeyEntry Win32KeyMapExtended[] =
{/*VK_END*/ 0x23, WCEL_MoveToEnd },
{/*VK_UP*/ 0x26, WCEL_MoveToPrevHist },
{/*VK_DOWN*/ 0x28, WCEL_MoveToNextHist },
{/*VK_DEL*/ 0x2e, WCEL_FindPrevInHist /*L_DeleteCurrChar*/ },
{/*VK_DEL*/ 0x2e, WCEL_DeleteCurrChar },
{ 0, NULL }
};