summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsabetts <sabetts>2006-10-04 03:02:50 +0000
committersabetts <sabetts>2006-10-04 03:02:50 +0000
commitad6ea822edc9c96ff84ce284ba694fce7ad4a3c5 (patch)
tree5bab83205fd3b97f67a607611ec8ab5987b13cf6
parenta8a845fa536b6a8ec7b7bd907658689000db9d60 (diff)
downloadratpoison-ad6ea822edc9c96ff84ce284ba694fce7ad4a3c5.zip
(handle_key): demote the 'no matching key' error to debug output.
-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);
}