diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/flyspell.el | 2 |
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 @@ | |||
| 1 | 2006-11-11 Richard Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * textmodes/flyspell.el (flyspell-mode-map): | ||
| 4 | Bind C-c $ instead of M-RET. | ||
| 5 | |||
| 1 | 2006-11-10 Simon Marshall <simon@gnu.org> | 6 | 2006-11-10 Simon Marshall <simon@gnu.org> |
| 2 | 7 | ||
| 3 | * progmodes/cc-fonts.el (c-font-lock-declarations): Don't overwrite | 8 | * 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.") | |||
| 412 | (define-key map flyspell-auto-correct-binding 'flyspell-auto-correct-previous-word) | 412 | (define-key map flyspell-auto-correct-binding 'flyspell-auto-correct-previous-word) |
| 413 | (define-key map [(control ?\,)] 'flyspell-goto-next-error) | 413 | (define-key map [(control ?\,)] 'flyspell-goto-next-error) |
| 414 | (define-key map [(control ?\.)] 'flyspell-auto-correct-word) | 414 | (define-key map [(control ?\.)] 'flyspell-auto-correct-word) |
| 415 | (define-key map [(meta ?\^m)] 'flyspell-correct-word-before-point) | 415 | (define-key map [?\C-c ?$] 'flyspell-correct-word-before-point) |
| 416 | map) | 416 | map) |
| 417 | "Minor mode keymap for Flyspell mode--for the whole buffer.") | 417 | "Minor mode keymap for Flyspell mode--for the whole buffer.") |
| 418 | 418 | ||