summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsabetts <sabetts>2001-09-23 07:43:40 +0000
committersabetts <sabetts>2001-09-23 07:43:40 +0000
commit844756cbfa42dfe3be550cf5c7ee24c2993f123b (patch)
treeedb9dd8fe083a52f0159dc228b7a991c618c89e7
parent4ef696c05c6bee87dcd94d6ac74f02a79584418b (diff)
downloadratpoison-844756cbfa42dfe3be550cf5c7ee24c2993f123b.zip
(initialize_default_keybindings): Change C-t a and
C-t C-a binding to "time".
-rw-r--r--ChangeLog5
-rw-r--r--src/actions.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6e6f8bb..1fc5881 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-23 shawn <sabetts@vcn.bc.ca>
+
+ * src/actions.c (initialize_default_keybindings): Change C-t a and
+ C-t C-a binding to "time".
+
2001-09-21 shawn <sabetts@vcn.bc.ca>
* src/split.h (find_frame_up): new prototype
diff --git a/src/actions.c b/src/actions.c
index e08e493..e60701c 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -226,8 +226,8 @@ initialize_default_keybindings (void)
add_keybinding (XK_K, ControlMask, "kill");
add_keybinding (XK_Return, 0, "next");
add_keybinding (XK_Return, ControlMask, "next");
- add_keybinding (XK_a, 0, "clock");
- add_keybinding (XK_a, ControlMask, "clock");
+ add_keybinding (XK_a, 0, "time");
+ add_keybinding (XK_a, ControlMask, "time");
add_keybinding (XK_b, 0, "banish");
add_keybinding (XK_b, ControlMask, "banish");
add_keybinding (XK_c, 0, "exec " TERM_PROG);