]> git.eshelyaron.com Git - emacs.git/commitdiff
Swap C-delete and C-backspace bindings here, so we don't have to do it
authorChong Yidong <cyd@stupidchicken.com>
Tue, 27 Jan 2009 20:09:47 +0000 (20:09 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Tue, 27 Jan 2009 20:09:47 +0000 (20:09 +0000)
in normal-erase-is-backspace-mode.

lisp/bindings.el

index 940f97e7192c9644bade1f005fe815291e525501..36f9489c9982815380ea2528214dbe9a74faae7d 100644 (file)
@@ -1054,8 +1054,8 @@ language you are using."
 (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-backspace] 'kill-word)
+(global-set-key [C-delete] 'kill-word)
+(global-set-key [C-backspace] 'backward-kill-word)
 ;; This is "move to the clipboard", or as close as we come.
 (global-set-key [S-delete] 'kill-region)