emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp bindings.el


From: Chong Yidong
Subject: [Emacs-diffs] emacs/lisp bindings.el
Date: Tue, 27 Jan 2009 20:09:47 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Chong Yidong <cyd>      09/01/27 20:09:47

Modified files:
        lisp           : bindings.el 

Log message:
        Swap C-delete and C-backspace bindings here, so we don't have to do it
        in normal-erase-is-backspace-mode.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/bindings.el?cvsroot=emacs&r1=1.216&r2=1.217

Patches:
Index: bindings.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/bindings.el,v
retrieving revision 1.216
retrieving revision 1.217
diff -u -b -r1.216 -r1.217
--- bindings.el 5 Jan 2009 03:18:45 -0000       1.216
+++ bindings.el 27 Jan 2009 20:09:47 -0000      1.217
@@ -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)
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]