applied Jukka's sizeof K&R compliance patch, applied Manuels' last-line printage proposal for stdin reading.

This commit is contained in:
arg@mig29
2006-11-26 14:26:53 +01:00
parent 27ef73507b
commit 61a1910f91
5 changed files with 16 additions and 14 deletions

View File

@ -244,7 +244,7 @@ expose(XEvent *e) {
static void
keypress(XEvent *e) {
static unsigned int len = sizeof(key) / sizeof(key[0]);
static unsigned int len = sizeof key / sizeof key[0];
unsigned int i;
KeySym keysym;
XKeyEvent *ev = &e->xkey;
@ -355,7 +355,7 @@ void (*handler[LASTEvent]) (XEvent *) = {
void
grabkeys(void) {
static unsigned int len = sizeof(key) / sizeof(key[0]);
static unsigned int len = sizeof key / sizeof key[0];
unsigned int i;
KeyCode code;