diff options
author | rcyeske <rcyeske> | 2001-03-04 00:48:44 +0000 |
---|---|---|
committer | rcyeske <rcyeske> | 2001-03-04 00:48:44 +0000 |
commit | 006342c1e7a9ef4b4573bd6275678f805173909a (patch) | |
tree | 1b70757c7b145480522f147398cb09612b5fe03b | |
parent | 7f42bcabf5efdfc71f3e4a47eeaffd0996901a53 (diff) | |
download | ratpoison-006342c1e7a9ef4b4573bd6275678f805173909a.zip |
(cmd_bind): Do not pollute the message bar with
chatter about the keybinding.
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rw-r--r-- | src/actions.c | 6 |
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); |