(flyspell-mode-map): Bind C-c $ instead of M-RET.

This commit is contained in:
Richard M. Stallman
2006-11-11 01:00:10 +00:00
parent 7180836e4d
commit 89be8f4ece
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2006-11-11 Richard Stallman <rms@gnu.org>
* textmodes/flyspell.el (flyspell-mode-map):
Bind C-c $ instead of M-RET.
2006-11-10 Simon Marshall <simon@gnu.org>
* progmodes/cc-fonts.el (c-font-lock-declarations): Don't overwrite

View File

@@ -412,7 +412,7 @@ property of the major mode name.")
(define-key map flyspell-auto-correct-binding 'flyspell-auto-correct-previous-word)
(define-key map [(control ?\,)] 'flyspell-goto-next-error)
(define-key map [(control ?\.)] 'flyspell-auto-correct-word)
(define-key map [(meta ?\^m)] 'flyspell-correct-word-before-point)
(define-key map [?\C-c ?$] 'flyspell-correct-word-before-point)
map)
"Minor mode keymap for Flyspell mode--for the whole buffer.")