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

Alexandre Julliard julliard at wine.codeweavers.com
Mon Nov 23 09:59:46 CST 2015


Module: wine
Branch: master
Commit: b1b05e62e9901284d0cca579498441a9821d4b47
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b1b05e62e9901284d0cca579498441a9821d4b47

Author: Hugh McMaster <hugh.mcmaster at outlook.com>
Date:   Mon Nov 23 20:58:38 2015 +1100

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

Signed-off-by: Hugh McMaster <hugh.mcmaster at outlook.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/kernel32/editline.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dlls/kernel32/editline.c b/dlls/kernel32/editline.c
index 1774739..db17508 100644
--- a/dlls/kernel32/editline.c
+++ b/dlls/kernel32/editline.c
@@ -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 			}




More information about the wine-cvs mailing list