applied Jukka's sizeof K&R compliance patch, applied Manuels' last-line printage proposal for stdin reading.
This commit is contained in:
parent
27ef73507b
commit
61a1910f91
5 changed files with 16 additions and 14 deletions
4
event.c
4
event.c
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue