Commit b39ec4c4 authored by Ulrich Sibiller's avatar Ulrich Sibiller

Keystroke.c: improve TEST output

parent 93a360c5
...@@ -420,14 +420,14 @@ Bool nxagentCheckSpecialKeystroke(XKeyEvent *X, enum HandleEventResult *result) ...@@ -420,14 +420,14 @@ Bool nxagentCheckSpecialKeystroke(XKeyEvent *X, enum HandleEventResult *result)
enum nxagentSpecialKeystroke stroke = find_keystroke(X); enum nxagentSpecialKeystroke stroke = find_keystroke(X);
*result = doNothing; *result = doNothing;
if (stroke == KEYSTROKE_NOTHING)
return False;
#ifdef TEST #ifdef TEST
fprintf(stderr, "nxagentCheckSpecialKeystroke: got code %x - state %x - stroke %d\n", fprintf(stderr, "nxagentCheckSpecialKeystroke: got code %x - state %x - stroke %d\n",
X -> keycode, X -> state, stroke); X -> keycode, X -> state, stroke);
#endif #endif
if (stroke == KEYSTROKE_NOTHING)
return False;
/* /*
* Check special keys. * Check special keys.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment