Mercurial > emacs
changeset 33765:d67ce1c9c62b
2000-11-22 Simon Josefsson <simon@josefsson.org>
* gnus-uu.el (gnus-uu-digest-mail-forward): Search for "from:"
instead of "from: " for rfc822 compliance. Insert SPC.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 22 Nov 2000 16:33:13 +0000 |
parents | a832bb73de79 |
children | 3488141db749 |
files | lisp/gnus/gnus-uu.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/gnus/gnus-uu.el Wed Nov 22 16:32:36 2000 +0000 +++ b/lisp/gnus/gnus-uu.el Wed Nov 22 16:33:13 2000 +0000 @@ -561,9 +561,9 @@ (delete-region (point) (gnus-point-at-eol)) (insert subject)) (goto-char (point-min)) - (when (re-search-forward "^From: ") + (when (re-search-forward "^From:") (delete-region (point) (gnus-point-at-eol)) - (insert from)) + (insert " " from)) (message-forward post t)) (setq gnus-uu-digest-from-subject nil)))