tfixing numlock bug. - surf - customized build of surf, the suckless webkit browser
 (HTM) git clone git://src.adamsgaard.dk/surf
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 38d809ce59fd4e7f041de3851be27f5a08278cf9
 (DIR) parent 4dbf90e0d7846bfdfa93564b6ec85068367f2008
 (HTM) Author: Enno Boland (tox) <tox@s01.de>
       Date:   Mon,  7 Sep 2009 15:43:18 +0200
       
       fixing numlock bug.
       Diffstat:
         M surf.c                              |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/surf.c b/surf.c
       t@@ -17,6 +17,7 @@
        #include <glib/gstdio.h>
        
        #define LENGTH(x) (sizeof x / sizeof x[0])
       +#define CLEANMASK(mask)         (mask & ~(GDK_MOD2_MASK))
        
        Display *dpy;
        Atom urlprop;
       t@@ -276,7 +277,8 @@ 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 &&
       -                                (ev->state == keys[i].mod || 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;