dix/CoreProcessKeyboardEvent: remove debugging for every key event
Also change #ifdef DEBUG/ErrorF/#endif to DebugF in FixKeyState.
This commit is contained in:
parent
3ae4d25018
commit
b559cbb160
12
dix/events.c
12
dix/events.c
|
@ -2777,12 +2777,6 @@ drawable.id:0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
if (((xE->u.u.type==KeyPress)||(xE->u.u.type==KeyRelease))) {
|
|
||||||
ErrorF("CoreProcessKbdEvent: Key %d %s\n",key,
|
|
||||||
(xE->u.u.type==KeyPress?"down":"up"));
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
switch (xE->u.u.type)
|
switch (xE->u.u.type)
|
||||||
{
|
{
|
||||||
case KeyPress:
|
case KeyPress:
|
||||||
|
@ -2863,12 +2857,12 @@ FixKeyState (register xEvent *xE, register DeviceIntPtr keybd)
|
||||||
key = xE->u.u.detail;
|
key = xE->u.u.detail;
|
||||||
kptr = &keyc->down[key >> 3];
|
kptr = &keyc->down[key >> 3];
|
||||||
bit = 1 << (key & 7);
|
bit = 1 << (key & 7);
|
||||||
#ifdef DEBUG
|
|
||||||
if (((xE->u.u.type==KeyPress)||(xE->u.u.type==KeyRelease))) {
|
if (((xE->u.u.type==KeyPress)||(xE->u.u.type==KeyRelease))) {
|
||||||
ErrorF("FixKeyState: Key %d %s\n",key,
|
DebugF("FixKeyState: Key %d %s\n",key,
|
||||||
(xE->u.u.type==KeyPress?"down":"up"));
|
(xE->u.u.type==KeyPress?"down":"up"));
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
switch (xE->u.u.type)
|
switch (xE->u.u.type)
|
||||||
{
|
{
|
||||||
case KeyPress:
|
case KeyPress:
|
||||||
|
|
Loading…
Reference in New Issue