From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/81479 Path: news.gmane.org!not-for-mail From: David Edmondson Newsgroups: gmane.emacs.gnus.general Subject: [PATCH] mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the 'Forwarded Message' header and the start of the message. Date: Fri, 24 Feb 2012 12:21:20 +0000 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1330098853 833 80.91.229.3 (24 Feb 2012 15:54:13 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 24 Feb 2012 15:54:13 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M29759@lists.math.uh.edu Fri Feb 24 16:54:10 2012 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1S0xTG-0004dw-CP for ding-account@gmane.org; Fri, 24 Feb 2012 16:54:10 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1S0xTA-0003cY-Tb; Fri, 24 Feb 2012 09:54:04 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1S0uEs-0002dm-FS for ding@lists.math.uh.edu; Fri, 24 Feb 2012 06:27:06 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1S0uEr-0001cf-0g for ding@lists.math.uh.edu; Fri, 24 Feb 2012 06:27:05 -0600 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1S0uEo-0007ds-6P for ding@gnus.org; Fri, 24 Feb 2012 13:27:02 +0100 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1S0uEm-0007T7-44 for ding@gnus.org; Fri, 24 Feb 2012 13:27:00 +0100 Original-Received: from host213-120-144-161.in-addr.btopenworld.com ([213.120.144.161]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 24 Feb 2012 13:27:00 +0100 Original-Received: from dme by host213-120-144-161.in-addr.btopenworld.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 24 Feb 2012 13:27:00 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 24 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: host213-120-144-161.in-addr.btopenworld.com User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/23.3 (gnu/linux) Cancel-Lock: sha1:jjLMZecR2uU2IMIfsGdGgtQ0lFw= X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:81479 Archived-At: --- lisp/mm-uu.el | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/lisp/mm-uu.el b/lisp/mm-uu.el index 327665b..964d418 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)))) -- 1.7.9