summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2014-02-11 11:53:50 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2014-02-11 11:53:50 (GMT)
commitc4b524022a0c010fdc0d526a4297b54d77420ba4 (patch)
tree5958736eb6835a0944596ece4782c5d7851a7d33 /unix
parent8aaaa90ec748d85170eb507c7f563223493c3471 (diff)
parent138b9ce4b8717760fa2f26dea9f1d59de57886c9 (diff)
downloadtk-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')
-rw-r--r--unix/tkUnixEvent.c2
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
/*