# HG changeset patch # User Richard M. Stallman # Date 1230005188 0 # Node ID 818439524f9b1610686f93530ddde55df2442bf7 # Parent af9f2d22b21dc32524d85fd0b424463f150f0bca (pmail-cease-edit): Put `>' before `From ' lines in message. diff -r af9f2d22b21d -r 818439524f9b lisp/mail/pmailedit.el --- a/lisp/mail/pmailedit.el Tue Dec 23 04:03:35 2008 +0000 +++ b/lisp/mail/pmailedit.el Tue Dec 23 04:06:28 2008 +0000 @@ -107,6 +107,12 @@ (save-excursion (set-buffer pmail-summary-buffer) (pmail-summary-enable))) + ;; Disguise any "From " lines so they don't start a new message. + (save-excursion + (goto-char (point-min)) + (while (search-forward "\nFrom " nil t) + (beginning-of-line) + (insert ">"))) ;; Make sure buffer ends with a blank line ;; so as not to run this message together with the following one. (save-excursion