added 20h's patch of 8 Sep 2011 to surf, thanks - surf - Surf web browser.
       
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 3b104416d350f25db098d6c8dc9ddff11311e065
 (DIR) parent 62f54a3745f193223def1c14a19a8581af1c00ed
 (HTM) Author: garbeam@gmail.com <unknown>
       Date:   Sat, 29 Oct 2011 10:59:34 +0200
       
       added 20h's patch of 8 Sep 2011 to surf, thanks
       Diffstat:
         surf.c                              |       3 +--
       
       1 file changed, 1 insertion(+), 2 deletions(-)
       ---
 (DIR) diff --git a/surf.c b/surf.c
       @@ -21,7 +21,6 @@
        #include <sys/file.h>
        
        #define LENGTH(x)               (sizeof x / sizeof x[0])
       -#define CLEANMASK(mask)         (mask & ~(GDK_MOD2_MASK))
        
        enum { AtomFind, AtomGo, AtomUri, AtomLast };
        
       @@ -345,7 +344,7 @@ keypress(GtkWidget* w, GdkEventKey *ev, Client *c) {
                updatewinid(c);
                for(i = 0; i < LENGTH(keys); i++) {
                        if(gdk_keyval_to_lower(ev->keyval) == keys[i].keyval
       -                                && CLEANMASK(ev->state) == keys[i].mod
       +                                && (ev->state & keys[i].mod) == keys[i].mod
                                        && keys[i].func) {
                                keys[i].func(c, &(keys[i].arg));
                                processed = TRUE;