diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-02-11 11:53:50 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-02-11 11:53:50 (GMT) |
commit | c4b524022a0c010fdc0d526a4297b54d77420ba4 (patch) | |
tree | 5958736eb6835a0944596ece4782c5d7851a7d33 /unix/tkUnixEvent.c | |
parent | 8aaaa90ec748d85170eb507c7f563223493c3471 (diff) | |
parent | 138b9ce4b8717760fa2f26dea9f1d59de57886c9 (diff) | |
download | tk-c4b524022a0c010fdc0d526a4297b54d77420ba4.zip tk-c4b524022a0c010fdc0d526a4297b54d77420ba4.tar.gz tk-c4b524022a0c010fdc0d526a4297b54d77420ba4.tar.bz2 |
Fix [52ca3e7f55]: XkbOpenDisplay macro incorrect when HAVE_XKBKEYCODETOKEYSYM is not defined
Diffstat (limited to 'unix/tkUnixEvent.c')
-rw-r--r-- | unix/tkUnixEvent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tkUnixEvent.c b/unix/tkUnixEvent.c index 9a29f51..f3beb16 100644 --- a/unix/tkUnixEvent.c +++ b/unix/tkUnixEvent.c @@ -15,7 +15,7 @@ #ifdef HAVE_XKBKEYCODETOKEYSYM # include <X11/XKBlib.h> #else -# define XkbOpenDisplay(D,V,E,M,m,R) (V),(E),(M),(m),(R),(NULL) +# define XkbOpenDisplay(D,V,E,M,m,R) ((V),(E),(M),(m),(R),(NULL)) #endif /* |