[gnus git] branch no-gnus updated: m0-1-81-g74bbf81 =1= Be more liberal when extracting forwards as MIME
Lars Magne Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 74bbf8136fc1ca3a984b996e7689f7d7f6a7299f (commit)
from 39e76f967ae6d8d1a49a2c8c6735bc1b8fb687f8 (commit)
- Log -----------------------------------------------------------------
commit 74bbf8136fc1ca3a984b996e7689f7d7f6a7299f
Author: David Edmondson <[email protected]>
Date: Sat Mar 10 01:57:16 2012 +0100
Be more liberal when extracting forwards as MIME
* mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
'Forwarded Message' header and the start of the message.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 43cd767..52da717 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2012-03-10 David Edmondson <[email protected]>
+
+ * mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
+ 'Forwarded Message' header and the start of the message.
+
2012-03-04 Thierry Volpiatto <[email protected]>
* gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
@@ -7669,7 +7674,7 @@
accept. Reported by Dan Christensen.
(nnimap-command): Make sure that the error message doesn't error out.
-2010-09-20 David Edmondson <[email protected]> (tiny change)
+2010-09-20 David Edmondson <[email protected]>
* nnimap.el (nnimap-request-set-mark): Don't wait for a response when
we haven't requested anything.
diff --git a/lisp/mm-uu.el b/lisp/mm-uu.el
index 4f046d6..0cf3730 100644
--- a/lisp/mm-uu.el
+++ b/lisp/mm-uu.el
@@ -430,7 +430,11 @@ apply the face `mm-uu-extract'."
(defun mm-uu-forward-extract ()
(mm-make-handle (mm-uu-copy-to-buffer
- (progn (goto-char start-point) (forward-line) (point))
+ (progn
+ (goto-char start-point)
+ (forward-line)
+ (skip-chars-forward "\n")
+ (point))
(progn (goto-char end-point) (forward-line -1) (point)))
'("message/rfc822" (charset . gnus-decoded))))
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 7 ++++++-
lisp/mm-uu.el | 6 +++++-
2 files changed, 11 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, no-gnus has been updated
hooks/post-receive
--
Gnus Project