diff options
-rw-r--r-- | src/cmd/rio/event.c | 2 | ||||
-rw-r--r-- | src/cmd/rio/key.c | 8 |
2 files changed, 3 insertions, 7 deletions
diff --git a/src/cmd/rio/event.c b/src/cmd/rio/event.c index e4f3f692..893693bc 100644 --- a/src/cmd/rio/event.c +++ b/src/cmd/rio/event.c @@ -15,9 +15,7 @@ void mainloop(int shape_event) { XEvent ev; - XKeyEvent *ke; -Top: for(;;){ getevent(&ev); diff --git a/src/cmd/rio/key.c b/src/cmd/rio/key.c index 38e1bf83..bff0d14d 100644 --- a/src/cmd/rio/key.c +++ b/src/cmd/rio/key.c @@ -18,12 +18,10 @@ enum }; static int tabcode = 0x17; -static int altcode = 0x40; -static int pgupcode = 0x63; -static int pgdowncode = 0x69; +//static int altcode = 0x40; +//static int pgupcode = 0x63; +//static int pgdowncode = 0x69; -static void altpress(void); -static void altrelease(void); static void alttab(int shift); void |