leo@marco.UUCP (Matthias Pfaller) (02/10/90)
In line 202 of kernel/stkbd.c the keypad key '2' is defined to return
"ESC O w". This is wrong. The key should return "ESC O r". You should
change the line from
< /* 32 = 2 */ {'w', 0},
to
> /* 32 = 2 */ {'r', 0},
to get a vt100-compatible keyboard.
leo@marco.UUCP (Matthias Pfaller)