From 7957d2f59311405460acc2631d0107abb409b24e Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 27 Jan 2009 20:09:47 +0000 Subject: [PATCH] Swap C-delete and C-backspace bindings here, so we don't have to do it in normal-erase-is-backspace-mode. --- lisp/bindings.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/bindings.el b/lisp/bindings.el index 940f97e7192..36f9489c998 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -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) -- 2.39.5