# HG changeset patch # User Chong Yidong # Date 1233086987 0 # Node ID 84d629592864f5c1fca477e407dc6a28a87a6028 # Parent 50a9b12494687363c211ade0397603b7f418f7d1 Swap C-delete and C-backspace bindings here, so we don't have to do it in normal-erase-is-backspace-mode. diff -r 50a9b1249468 -r 84d629592864 lisp/bindings.el --- a/lisp/bindings.el Tue Jan 27 20:09:38 2009 +0000 +++ b/lisp/bindings.el Tue Jan 27 20:09:47 2009 +0000 @@ -1054,8 +1054,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-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)