blob: cf7fa0d783530ed754a560e3d90f5f1d562f81c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- kbd.c.orig Sat Oct 12 19:47:58 2002
+++ kbd.c Sat Mar 1 16:03:31 2003
@@ -746,9 +746,9 @@
case 'B': ev.x = KBD_DOWN; break;
case 'C': ev.x = KBD_RIGHT; break;
case 'D': ev.x = KBD_LEFT; break;
- case 'F':
+ case 'F': ev.x = KBD_END; break;
case 'e': ev.x = KBD_END; break;
- case 'H':
+ case 'H': ev.x = KBD_HOME; break;
case 0: ev.x = KBD_HOME; break;
case 'I': ev.x = KBD_PAGE_UP; break;
case 'G': ev.x = KBD_PAGE_DOWN; break;
|