[gnus git] branch master updated: n0-17-50-gbaa48a2 =1= mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading whitespace in base64 data lines.
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via baa48a2d567525640b6ec7a8d228f60313efc138 (commit)
from ae386704034ad8d7199316ee688838672e34fb25 (commit)
- Log -----------------------------------------------------------------
commit baa48a2d567525640b6ec7a8d228f60313efc138
Author: Katsumi Yamaoka <[email protected]>
Date: Thu May 19 23:58:51 2011 +0000
mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading whitespace in base64 data lines.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ef5250d..61bfa87 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2011-05-19 Katsumi Yamaoka <[email protected]>
+
+ * mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading
+ whitespace in base64 data lines.
+
2011-05-18 Teodor Zlatanov <[email protected]>
* gnus-registry.el (gnus-registry-user-format-function-M):
diff --git a/lisp/mm-bodies.el b/lisp/mm-bodies.el
index 9952f41..695451d 100644
--- a/lisp/mm-bodies.el
+++ b/lisp/mm-bodies.el
@@ -197,7 +197,8 @@ If TYPE is `text/plain' CRLF->LF translation may occur."
(while (re-search-forward "^[\t ]*\r?\n" nil t)
(delete-region (match-beginning 0) (match-end 0)))
(goto-char (point-max))
- (when (re-search-backward "^[A-Za-z0-9+/]+=*[\t ]*$" nil t)
+ (when (re-search-backward "^[\t ]*[A-Za-z0-9+/]+=*[\t ]*$"
+ nil t)
(forward-line))
(point))))
((memq encoding '(nil 7bit 8bit binary))
-----------------------------------------------------------------------
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 | 5 +++++
lisp/mm-bodies.el | 3 ++-
2 files changed, 7 insertions(+), 1 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, master has been updated
hooks/post-receive
--
Gnus Project