Make Home, End and Enter on the keypad work in the debugger

Dmitry Timoshkov dmitry at baikal.ru
Mon Feb 11 21:54:57 CST 2002


Hello.

Please use this patch instead of a previous one.

Changelog:
    Dmitry Timoshkov <dmitry at codeweavers.com>
    Make Home, End and Enter on the keypad work in the debugger.

--- cvs/hq/wine/win32/editline.c	Fri Jan 11 16:51:41 2002
+++ wine/win32/editline.c	Tue Feb 12 03:47:12 2002
@@ -572,8 +572,11 @@
 
 static KeyEntry EmacsKeyMapExtended[] = 
 {
+    {/*RETURN*/  0x0d,	WCEL_Done },
     {/*VK_PRIOR*/0x21, 	WCEL_MoveToPrevHist	},
     {/*VK_NEXT*/0x22,	WCEL_MoveToNextHist 	},
+    {/*VK_END*/  0x23,	WCEL_MoveToEnd		},
+    {/*VK_HOME*/ 0x24,	WCEL_MoveToBeg		},
     {/*VK_RIGHT*/0x27,	WCEL_MoveRight 		},
     {/*VK_LEFT*/0x25,	WCEL_MoveLeft 		},
     {	0,		NULL 			}








More information about the wine-patches mailing list