summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-11-11 01:00:10 +0000
committerRichard M. Stallman <rms@gnu.org>2006-11-11 01:00:10 +0000
commit89be8f4ece8261a3ca664f3cc4a3ae09d2c096c6 (patch)
treef536f383f456b5b8212d4583554e1f0a971ef12b
parent7180836e4d2be83a4d27faa31e1acb271f4e6d27 (diff)
downloademacs-89be8f4ece8261a3ca664f3cc4a3ae09d2c096c6.tar.gz
(flyspell-mode-map): Bind C-c $ instead of M-RET.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/flyspell.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fb60cf8363f..84c6be5af25 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -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
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el
index 5268988f427..a3c110b8f19 100644
--- a/lisp/textmodes/flyspell.el
+++ b/lisp/textmodes/flyspell.el
@@ -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.")