diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-02-11 11:52:39 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-02-11 11:52:39 (GMT) |
commit | 138b9ce4b8717760fa2f26dea9f1d59de57886c9 (patch) | |
tree | 6e7899be78f075036fc3ee99f541a34081cd491b | |
parent | e978b5dfa3fce531e61f49686113fd26f3fcc7cb (diff) | |
download | tk-138b9ce4b8717760fa2f26dea9f1d59de57886c9.zip tk-138b9ce4b8717760fa2f26dea9f1d59de57886c9.tar.gz tk-138b9ce4b8717760fa2f26dea9f1d59de57886c9.tar.bz2 |
Fix [52ca3e7f55]: XkbOpenDisplay macro incorrect when HAVE_XKBKEYCODETOKEYSYM is not defined
-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 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 /* |