summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--src/events.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 049a912..95af32c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2006-10-03 Shawn Betts <sabetts@vcn.bc.ca>
+ * src/events.c (handle_key): demote the 'no matching key' error to debug output.
+
* src/main.c (strtok_ws): remove useless debug ouput.
2006-09-26 Shawn Betts <sabetts@vcn.bc.ca>
diff --git a/src/events.c b/src/events.c
index 406e743..257f141 100644
--- a/src/events.c
+++ b/src/events.c
@@ -425,7 +425,7 @@ handle_key (KeySym ks, unsigned int mod, rp_screen *s)
}
else
{
- PRINT_ERROR(("Impossible: No matching key\n"));
+ PRINT_DEBUG(("Impossible: No matching key"));
}
XAllowEvents (dpy, AsyncKeyboard, CurrentTime);
}