changeset 34830:67390da4022e

([C-backspace]): Bind C-backspace to kill-word.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 22 Dec 2000 13:18:44 +0000
parents 320f80be4559
children 5a5be14316ae
files lisp/bindings.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/bindings.el	Fri Dec 22 13:18:19 2000 +0000
+++ b/lisp/bindings.el	Fri Dec 22 13:18:44 2000 +0000
@@ -766,7 +766,8 @@
 (global-set-key [C-right]  'forward-word)
 (global-set-key [C-left]   'backward-word)
 ;; This is not quite compatible, but at least is analogous
-(global-set-key [C-delete]   'backward-kill-word)
+(global-set-key [C-delete] 'backward-kill-word)
+(global-set-key [C-backspace] 'kill-word)
 ;; This is "move to the clipboard", or as close as we come.
 (global-set-key [S-delete] 'kill-region)