summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog5
-rw-r--r--src/actions.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index edfc2b8..680e5ed 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-03 Ryan Yeske <rcyeske@cut.hotdog.tmp>
+
+ * actions.c (cmd_bind): Do not pollute the message bar with
+ chatter about the keybinding.
+
2001-03-03 shawn <sabetts@livingston>
* manage.c (maximize_normal): windows with resize increments
diff --git a/src/actions.c b/src/actions.c
index f01a836..3b7cd61 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -238,10 +238,10 @@ cmd_bind (void *data)
if (key)
{
rp_action *key_action;
- char foo[1000];
- sprintf (foo, " %d %ld : '%s' ", key->state, key->sym, cmd);
- message (foo);
+/* char foo[1000]; */
+/* sprintf (foo, " %d %ld : '%s' ", key->state, key->sym, cmd); */
+/* message (foo); */
if ((key_action = find_keybinding (key->sym, key->state)))
replace_keybinding (key_action, cmd);