diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2003-05-05 21:39:22 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2003-05-05 21:39:22 +0000 |
commit | 3e6433f285d225ae0b347d6833c17f7f453628fe (patch) | |
tree | d01f671510081d0fb8a5ddb238867b00c1a9b43e /console-client | |
parent | ca702f0020d4a45e7628d7dc4bf83b858ec49582 (diff) |
2003-02-24 Marco Gerards <metgerards@student.han.nl>
* pc-kbd.c (sc_set1_to_set2): Map the set2 scancodes for F11 and
F12 properly on the set1 scancodes for F11 and F12.
Diffstat (limited to 'console-client')
-rw-r--r-- | console-client/ChangeLog | 5 | ||||
-rw-r--r-- | console-client/pc-kbd.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/console-client/ChangeLog b/console-client/ChangeLog index 57288750..77ba9434 100644 --- a/console-client/ChangeLog +++ b/console-client/ChangeLog @@ -1,3 +1,8 @@ +2003-02-24 Marco Gerards <metgerards@student.han.nl> + + * pc-kbd.c (sc_set1_to_set2): Map the set2 scancodes for F11 and + F12 properly on the set1 scancodes for F11 and F12. + 2002-11-25 Marcus Brinkmann <marcus@gnu.org> * pc-kbd.c (IS_FUNC_KEY): Fix last change. diff --git a/console-client/pc-kbd.c b/console-client/pc-kbd.c index a7e864a4..b810fffa 100644 --- a/console-client/pc-kbd.c +++ b/console-client/pc-kbd.c @@ -519,6 +519,8 @@ enum scancode sc_set1_to_set2[] = SC_PAD_0, SC_PAD_DECIMAL, 0x00, /* XXX SYSREQ */ + 0x00, + 0x00, SC_F11, SC_F12, }; |