summaryrefslogtreecommitdiffstats
path: root/source/keyb.c
diff options
context:
space:
mode:
authorQC <qball@gmpclient.org>2015-05-25 10:30:32 +0200
committerQC <qball@gmpclient.org>2015-05-25 10:31:10 +0200
commitd312090701bd03cabcad9e6588ea44244c6a94f2 (patch)
tree579c25c1c53d1aadbc078fd60488344f93ce30cc /source/keyb.c
parent1fbb3b50f8bac739b29d74c57d29f4ab2a5504ac (diff)
Issue #168: Add note about pkg-config and update packages.
Diffstat (limited to 'source/keyb.c')
-rw-r--r--source/keyb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/keyb.c b/source/keyb.c
index bcaeb7ef..ff1b1e6b 100644
--- a/source/keyb.c
+++ b/source/keyb.c
@@ -239,7 +239,7 @@ int abe_test_action ( KeyBindingAction action, unsigned int mask, KeySym key )
if ( kb->keysym == key ) {
// Bits 13 and 14 of the modifiers together are the group number, and
// should be ignored when looking up key bindings
- if ( ( mask & ~( NumlockMask | (1<<13) | (1<<14) ) ) == kb->modmask ) {
+ if ( ( mask & ~( NumlockMask | ( 1 << 13 ) | ( 1 << 14 ) ) ) == kb->modmask ) {
return TRUE;
}
}