diff options
author | sabetts <sabetts> | 2001-03-02 09:40:59 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2001-03-02 09:40:59 +0000 |
commit | bfbea3ac8dfd317d3d0f135b98d80bdcb4a84a74 (patch) | |
tree | 9d67364ae6045cbc45b84bb2aa3f8ed18caa4efb /src | |
parent | 257289a3ca61b2f4a349f3dc559b3f853ce5fc31 (diff) | |
download | ratpoison-bfbea3ac8dfd317d3d0f135b98d80bdcb4a84a74.zip |
* actions.c (initialize_default_keybindings): removed emacs
binding.
* Makefile.am (SUBDIRS): removed man/
* configure.in (AC_OUTPUT): removed man/Makefile
removed references to emacs.
* doc/Makefile.am (man_MANS): ratpoison.1 moved to doc/
* doc/ratpoison.texi: minor updates.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rw-r--r-- | src/actions.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 21151e8..42f8834 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-03-02 shawn <sabetts@diggin.lamenet.tmp> + + * actions.c (initialize_default_keybindings): removed emacs + binding. + 2001-03-01 Ryan Yeske <rcyeske@cut.hotdog.tmp> * ratpoison.h (xmalloc, xrealloc, fatal): Prototype. diff --git a/src/actions.c b/src/actions.c index 32c8059..f01a836 100644 --- a/src/actions.c +++ b/src/actions.c @@ -113,8 +113,6 @@ initialize_default_keybindings (void) add_keybinding (XK_c, 0, "exec " TERM_PROG); add_keybinding (XK_c, C, "exec " TERM_PROG); add_keybinding (XK_colon, 0, "colon"); - add_keybinding (XK_e, 0, "exec " EMACS_PROG); - add_keybinding (XK_e, C, "exec " EMACS_PROG); add_keybinding (XK_exclam, 0, "exec"); add_keybinding (XK_exclam, C, "colon exec " TERM_PROG " -e "); add_keybinding (XK_k, 0, "delete"); |