From: Richard M. Stallman Date: Sun, 17 May 2009 16:11:23 +0000 (+0000) Subject: * mail/rmailedit.el (rmail-edit-current-message): X-Git-Tag: emacs-pretest-23.0.94~36 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f5b574ad033a830b9ace3040e3f7cd8c5780e54e;p=emacs.git * mail/rmailedit.el (rmail-edit-current-message): Call rmail-modify-format here. (rmail-cease-edit): Not here. --- 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 + + * mail/rmailedit.el (rmail-edit-current-message): + Call rmail-modify-format here. + (rmail-cease-edit): Not here. + 2009-05-17 Stefan Monnier * 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)))