diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-06-15 16:46:59 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-06-15 16:46:59 +0000 |
commit | f0c76610b72a5b54bae5a5eb51ff4c420a27320e (patch) | |
tree | c51c45370d0aa8efa5c14f9c9d8e4d08b5c12468 /dix | |
parent | 28ee3dd955302a1e99ffdc66cf0f512c6234d043 (diff) |
Conditionalise another use of XEvIE.
Diffstat (limited to 'dix')
-rw-r--r-- | dix/events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dix/events.c b/dix/events.c index 9a77d2874..cbac85344 100644 --- a/dix/events.c +++ b/dix/events.c @@ -2822,7 +2822,7 @@ drawable.id:0; kptr = &keyc->down[key >> 3]; bit = 1 << (key & 7); modifiers = keyc->modifierMap[key]; -#ifdef XKB +#if defined(XKB) && defined(XEVIE) if(!noXkbExtension && !xeviegrabState && xevieFlag && clients[xevieClientIndex] && (xevieMask & xevieFilters[xE->u.u.type])) { |