1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* lisp/bindings.el: Bind M-= to count-words.

This commit is contained in:
Chong Yidong 2012-07-18 22:17:49 +08:00
parent 4c8ff0fec3
commit 0fe776a1e4
3 changed files with 5 additions and 1 deletions

View file

@ -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.

View 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>

View 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.