http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bbe3c9c
)
kernel32: Remove un-needed VK_DEL entries from the console keymap.
author
Hugh McMaster
<hugh.mcmaster@outlook.com>
Mon, 23 Nov 2015 09:58:38 +0000
(20:58 +1100)
committer
Alexandre Julliard
<julliard@winehq.org>
Mon, 23 Nov 2015 14:35:19 +0000
(23:35 +0900)
Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
dlls/kernel32/editline.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/kernel32/editline.c
b/dlls/kernel32/editline.c
index 17747390174c8e95d8fce43c538c4174b921a8ad..db17508efec4adb44cd39d1f44c09da7700024cd 100644
(file)
--- 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 }