reordering functions.

This commit is contained in:
Enno Boland (tox) 2009-09-09 21:57:23 +02:00
parent 22aa6291df
commit 9215a55624
1 changed files with 1 additions and 2 deletions

3
surf.c
View File

@ -263,8 +263,7 @@ keypress(GtkWidget* w, GdkEventKey *ev, Client *c) {
focus = BROWSER;
for(i = 0; i < LENGTH(keys); i++) {
if(focus & keys[i].focus && ev->keyval == keys[i].keyval &&
(CLEANMASK(ev->state) == keys[i].mod ||
CLEANMASK(ev->state) & keys[i].mod)
CLEANMASK(ev->state) == keys[i].mod
&& keys[i].func) {
keys[i].func(c, &(keys[i].arg));
processed = TRUE;