summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2014-02-11 11:52:39 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2014-02-11 11:52:39 (GMT)
commit4d713f705d43affa217affb7ab97e733781eb71b (patch)
tree6e7899be78f075036fc3ee99f541a34081cd491b /unix
parent7edcd9275a77b5ad6adb7dc74ae1a5ad2fbb3f13 (diff)
downloadtk-4d713f705d43affa217affb7ab97e733781eb71b.zip
tk-4d713f705d43affa217affb7ab97e733781eb71b.tar.gz
tk-4d713f705d43affa217affb7ab97e733781eb71b.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
/*