summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2014-02-11 11:52:39 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2014-02-11 11:52:39 (GMT)
commit138b9ce4b8717760fa2f26dea9f1d59de57886c9 (patch)
tree6e7899be78f075036fc3ee99f541a34081cd491b /unix
parente978b5dfa3fce531e61f49686113fd26f3fcc7cb (diff)
downloadtk-138b9ce4b8717760fa2f26dea9f1d59de57886c9.zip
tk-138b9ce4b8717760fa2f26dea9f1d59de57886c9.tar.gz
tk-138b9ce4b8717760fa2f26dea9f1d59de57886c9.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 0cc3731..eb83474 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
/*