emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r106016: * bindings.el ([M-left], [M-


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106016: * bindings.el ([M-left], [M-right]): Bind to left-word and right-word respectively.
Date: Fri, 07 Oct 2011 12:05:10 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106016
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Fri 2011-10-07 12:05:10 -0400
message:
  * bindings.el ([M-left],[M-right]): Bind to left-word and right-word 
respectively.
modified:
  lisp/ChangeLog
  lisp/bindings.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-10-07 02:17:29 +0000
+++ b/lisp/ChangeLog    2011-10-07 16:05:10 +0000
@@ -1,3 +1,8 @@
+2011-10-07  Chong Yidong  <address@hidden>
+
+       * bindings.el ([M-left],[M-right]): Bind to left-word and
+       right-word respectively.
+
 2011-10-07  Glenn Morris  <address@hidden>
 
        * cus-start.el (debug-on-quit): Fix custom type.

=== modified file 'lisp/bindings.el'
--- a/lisp/bindings.el  2011-08-20 22:41:41 +0000
+++ b/lisp/bindings.el  2011-10-07 16:05:10 +0000
@@ -1103,9 +1103,9 @@
   "Keymap for characters following C-c.")
 (define-key global-map "\C-c" 'mode-specific-command-prefix)
 
-(global-set-key [M-right]  'forward-word)
+(global-set-key [M-right]  'right-word)
 (define-key esc-map [right] 'forward-word)
-(global-set-key [M-left]   'backward-word)
+(global-set-key [M-left]   'left-word)
 (define-key esc-map [left] 'backward-word)
 ;; address@hidden says these bindings are standard on PC editors.
 (global-set-key [C-right]  'right-word)


reply via email to

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