Removing the warning about »XKeycodeToKeysym. - ttabbed - Simple tabbing application for X11.
       
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit e3080747c51ac1912e3fae7a45a97bd021b61daa
 (DIR) parent cd09ae2592637e42d4ba0594303f129b3b0b18a1
 (HTM) Author: Christoph Lohmann <20h@r-36.net>
       Date:   Sat,  7 Jul 2012 22:50:26 +0200
       
       Removing the warning about »XKeycodeToKeysym.
       Diffstat:
         tabbed.c                            |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/tabbed.c b/tabbed.c
       @@ -14,6 +14,7 @@
        #include <X11/Xlib.h>
        #include <X11/Xproto.h>
        #include <X11/Xutil.h>
       +#include <X11/XKBlib.h>
        
        #include "arg.h"
        
       @@ -542,7 +543,7 @@ keypress(const XEvent *e) {
                unsigned int i;
                KeySym keysym;
        
       -        keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
       +        keysym = XkbKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0, 0);
                for(i = 0; i < LENGTH(keys); i++)
                        if(keysym == keys[i].keysym
                        && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)