# HG changeset patch # User Richard M. Stallman # Date 1163206803 0 # Node ID 37d2c93830355159b2fcaba9331d56720f57d681 # Parent 22d4fdb9b8db2880969b90be95ee76714d33a52c (flyspell-mode-map): Bind C-c $ instead of M-RET. diff -r 22d4fdb9b8db -r 37d2c9383035 lisp/textmodes/flyspell.el --- a/lisp/textmodes/flyspell.el Fri Nov 10 17:10:01 2006 +0000 +++ b/lisp/textmodes/flyspell.el Sat Nov 11 01:00:03 2006 +0000 @@ -412,7 +412,7 @@ (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.")