From dac9dfc95dea007b788761d694980c9000c31ea6 Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Tue, 12 Feb 2002 18:45:46 +0000 Subject: [PATCH] Make Home, End and Enter on the keypad work in the debugger. --- win32/editline.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/win32/editline.c b/win32/editline.c index bbace28b80a..4c668ce9739 100644 --- a/win32/editline.c +++ b/win32/editline.c @@ -572,8 +572,11 @@ static KeyEntry EmacsKeyMapAlt[] = 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 }