]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/bindings.el: Bind M-= to count-words.
authorChong Yidong <cyd@gnu.org>
Wed, 18 Jul 2012 14:17:49 +0000 (22:17 +0800)
committerChong Yidong <cyd@gnu.org>
Wed, 18 Jul 2012 14:17:49 +0000 (22:17 +0800)
etc/NEWS
lisp/ChangeLog
lisp/bindings.el

index 3435a839a74a7b3d38495cbc71b6ea3887e2d04b..484cfaf27174420283b2739cf9bbf89d197e96d3 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -159,6 +159,8 @@ prompts for a column number.
 ** `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.
 
index 92148234226e4b2c4aaf8295900cbd56af967546..42e8e9a84fc85faa8618d0f07ce935ccfd0ba2ff 100644 (file)
@@ -1,5 +1,7 @@
 2012-07-18  Chong Yidong  <cyd@gnu.org>
 
+       * bindings.el: Bind M-= to count-words.
+
        * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
 
 2012-07-18  Masatake YAMATO  <yamato@redhat.com>
index e0555a17b15c7a3038ebb2f414291aa8ab47ca69..655cda235b468f3469a540d4715db72fd5ddc2ad 100644 (file)
@@ -793,7 +793,7 @@ if `inhibit-field-text-motion' is non-nil."
 (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.