* fhandler_console.cc (keytable): Add support for keypad 5 key, which MS seems

to think is equivalent to VK_CLEAR.
* debug.cc (thread_stub): Eliminate initialization of reent stuff.
* init.cc (dll_entry): Move it here.
This commit is contained in:
Christopher Faylor
2000-04-15 03:52:24 +00:00
parent 405713cfb3
commit eed11cf2bb
4 changed files with 14 additions and 10 deletions

View File

@ -1255,6 +1255,7 @@ static struct {
{VK_F11, {"\033[23~", NULL, NULL, NULL}},
{VK_F12, {"\033[24~", NULL, NULL, NULL}},
{VK_NUMPAD5, {"\033[G", NULL, NULL, NULL}},
{VK_CLEAR, {"\033[G", NULL, NULL, NULL}},
{'6', {NULL, NULL, "\036", NULL}},
{0, {"", NULL, NULL, NULL}}
};