diff options
| -rw-r--r-- | lisp/mail/rmailedit.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mail/rmailedit.el b/lisp/mail/rmailedit.el index 86e0f251f2b..c6c355a5a8a 100644 --- a/lisp/mail/rmailedit.el +++ b/lisp/mail/rmailedit.el | |||
| @@ -28,7 +28,8 @@ | |||
| 28 | (defvar rmail-edit-map nil) | 28 | (defvar rmail-edit-map nil) |
| 29 | (if rmail-edit-map | 29 | (if rmail-edit-map |
| 30 | nil | 30 | nil |
| 31 | (setq rmail-edit-map (nconc (make-sparse-keymap) (cdr text-mode-map))) | 31 | ;; Make a keymap that inherits text-mode-map. |
| 32 | (setq rmail-edit-map (nconc (make-sparse-keymap) text-mode-map)) | ||
| 32 | (define-key rmail-edit-map "\C-c\C-c" 'rmail-cease-edit) | 33 | (define-key rmail-edit-map "\C-c\C-c" 'rmail-cease-edit) |
| 33 | (define-key rmail-edit-map "\C-c\C-]" 'rmail-abort-edit)) | 34 | (define-key rmail-edit-map "\C-c\C-]" 'rmail-abort-edit)) |
| 34 | 35 | ||