summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2009-05-17 16:11:23 +0000
committerRichard M. Stallman <rms@gnu.org>2009-05-17 16:11:23 +0000
commitf5b574ad033a830b9ace3040e3f7cd8c5780e54e (patch)
tree2e9ee42946ea50d9d49749fe155eddd5506c1b09
parenteae7d8f84e2805daf127f1bcc7760b241cb76257 (diff)
downloademacs-f5b574ad033a830b9ace3040e3f7cd8c5780e54e.tar.gz
* mail/rmailedit.el (rmail-edit-current-message):
Call rmail-modify-format here. (rmail-cease-edit): Not here.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/mail/rmailedit.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e0b1739c562..fcb89a96436 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2009-05-17 Richard M Stallman <rms@gnu.org>
+
+ * mail/rmailedit.el (rmail-edit-current-message):
+ Call rmail-modify-format here.
+ (rmail-cease-edit): Not here.
+
2009-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
* vc-bzr.el (vc-bzr-state-heuristic): Fallback on vc-bzr-state in case
diff --git a/lisp/mail/rmailedit.el b/lisp/mail/rmailedit.el
index a4f89b119a1..f63e6870a8f 100644
--- a/lisp/mail/rmailedit.el
+++ b/lisp/mail/rmailedit.el
@@ -88,6 +88,7 @@ This function runs the hooks `text-mode-hook' and `rmail-edit-mode-hook'.
(interactive)
(if (zerop rmail-total-messages)
(error "No messages in this buffer"))
+ (rmail-modify-format)
(make-local-variable 'rmail-old-pruned)
(setq rmail-old-pruned (rmail-msg-is-pruned))
(rmail-edit-mode)
@@ -117,7 +118,6 @@ This function runs the hooks `text-mode-hook' and `rmail-edit-mode-hook'.
(defun rmail-cease-edit ()
"Finish editing message; switch back to Rmail proper."
(interactive)
- (rmail-modify-format)
(if (rmail-summary-exists)
(with-current-buffer rmail-summary-buffer
(rmail-summary-enable)))