emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r109143: * lisp/bindings.el: Bind M-=


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109143: * lisp/bindings.el: Bind M-= to count-words.
Date: Wed, 18 Jul 2012 22:17:49 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109143
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Wed 2012-07-18 22:17:49 +0800
message:
  * lisp/bindings.el: Bind M-= to count-words.
modified:
  etc/NEWS
  lisp/ChangeLog
  lisp/bindings.el
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2012-07-17 18:40:15 +0000
+++ b/etc/NEWS  2012-07-18 14:17:49 +0000
@@ -159,6 +159,8 @@
 ** `mouse-avoidance-banish-position' can now be used to customize
 `mouse-avoidance-mode' further.
 
+** `M-=' is now bound to `count-words', not `count-words-region'.
+
 ** `C-M-f' and `C-M-b' will now move to the path name separator
 character when doing minibuffer filename prompts.
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-07-18 14:00:09 +0000
+++ b/lisp/ChangeLog    2012-07-18 14:17:49 +0000
@@ -1,5 +1,7 @@
 2012-07-18  Chong Yidong  <address@hidden>
 
+       * bindings.el: Bind M-= to count-words.
+
        * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
 
 2012-07-18  Masatake YAMATO  <address@hidden>

=== modified file 'lisp/bindings.el'
--- a/lisp/bindings.el  2012-07-14 02:19:07 +0000
+++ b/lisp/bindings.el  2012-07-18 14:17:49 +0000
@@ -793,7 +793,7 @@
 (define-key ctl-x-map "\C-o" 'delete-blank-lines)
 (define-key esc-map " " 'just-one-space)
 (define-key esc-map "z" 'zap-to-char)
-(define-key esc-map "=" 'count-words-region)
+(define-key esc-map "=" 'count-words)
 (define-key ctl-x-map "=" 'what-cursor-position)
 (define-key esc-map ":" 'eval-expression)
 ;; Define ESC ESC : like ESC : for people who type ESC ESC out of habit.


reply via email to

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