From 35a3ea6a1863749768f0728fc25c9fd1fc3236f0 Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Wed, 18 Sep 2002 02:47:01 +0000 Subject: 2002-09-18 Marcus Brinkmann * ncursesw.c: Add an entry for the clear function. * pc-kbd.c (sv_to_kc): Add entries for unused scan codes 0x55 and 0x56. --- console-client/ChangeLog | 7 +++++++ console-client/ncursesw.c | 1 + console-client/pc-kbd.c | 4 +++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/console-client/ChangeLog b/console-client/ChangeLog index a784ab23..31e7144c 100644 --- a/console-client/ChangeLog +++ b/console-client/ChangeLog @@ -1,3 +1,10 @@ +2002-09-18 Marcus Brinkmann + + * ncursesw.c: Add an entry for the clear function. + + * pc-kbd.c (sv_to_kc): Add entries for unused scan codes 0x55 and + 0x56. + 2002-09-17 Marcus Brinkmann * pc-kbd.c (input_loop): Move code that toggles NumLock after code diff --git a/console-client/ncursesw.c b/console-client/ncursesw.c index b47d6513..215fc9b8 100644 --- a/console-client/ncursesw.c +++ b/console-client/ncursesw.c @@ -592,6 +592,7 @@ static struct display_ops ncursesw_display_ops = ncursesw_set_cursor_pos, ncursesw_set_cursor_status, ncursesw_scroll, + NULL, ncursesw_write, ncursesw_update, ncursesw_flash, diff --git a/console-client/pc-kbd.c b/console-client/pc-kbd.c index 085d1fe0..5dccc50e 100644 --- a/console-client/pc-kbd.c +++ b/console-client/pc-kbd.c @@ -251,7 +251,9 @@ char *sc_to_kc[][7] = { CONS_KEY_NPAGE, CONS_KEY_NPAGE, CONS_KEY_NPAGE,0, 0, 0, 0 }, /* SC_PAD_3. */ { CONS_KEY_IC, CONS_KEY_IC, CONS_KEY_IC, 0, 0, 0, 0 }, /* SC_PAD_0. */ { CONS_KEY_DC, CONS_KEY_DC, CONS_KEY_DC, 0, 0, 0, 0 }, /* SC_PAD_DECIMAL. */ - { 0, 0, /*XX*/0, 0, 0, 0, 0 }, /* SC_SYSREQ. */ + { 0, 0, /*XX*/0, 0, 0, 0, 0 }, /* SC_SYSREQ. */ + { 0, 0, 0, 0, 0, 0, 0 }, /* Unused. */ + { 0, 0, 0, 0, 0, 0, 0 }, /* Unused. */ { CONS_KEY_F11, 0, 0, 0, 0, 0, 0 }, /* SC_F11. */ { CONS_KEY_F12, 0, 0, 0, 0, 0, 0 } /* SC_F12. */ }; -- cgit v1.2.3