]> code.delx.au - gnu-emacs/commitdiff
(flyspell-mode-map): Bind C-c $ instead of M-RET.
authorRichard M. Stallman <rms@gnu.org>
Sat, 11 Nov 2006 01:00:10 +0000 (01:00 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 11 Nov 2006 01:00:10 +0000 (01:00 +0000)
lisp/ChangeLog
lisp/textmodes/flyspell.el

index fb60cf8363f7ebf22a29e2e7e0b0c4a0e8c78aa4..84c6be5af257f812d575d034a93d45404b454719 100644 (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
index 5268988f42735ccf4acde964808728223437e434..a3c110b8f193e9777cd861859204da33ac552cef 100644 (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.")