Mercurial > emacs
changeset 101578:84d629592864
Swap C-delete and C-backspace bindings here, so we don't have to do it
in normal-erase-is-backspace-mode.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Tue, 27 Jan 2009 20:09:47 +0000 |
parents | 50a9b1249468 |
children | 7864afd0c90d |
files | lisp/bindings.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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)