From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/18204 Path: main.gmane.org!not-for-mail From: Shenghuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: p0.40 still doesn't produce 1st text/plain portion Date: 26 Oct 1998 14:51:30 -500 Organization: Computer Dept of U Rochester Sender: owner-ding@hpc.uh.edu Message-ID: <5bogqzhzjx.fsf@rye.cs.rochester.edu> References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035156769 4939 80.91.224.250 (20 Oct 2002 23:32:49 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:32:49 +0000 (UTC) Return-Path: Original-Received: from fisher.math.uh.edu (fisher.math.uh.edu [129.7.128.35]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id OAA27289 for ; Mon, 26 Oct 1998 14:54:13 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by fisher.math.uh.edu (8.9.1/8.9.1) with ESMTP id NAB04163; Mon, 26 Oct 1998 13:53:27 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 26 Oct 1998 13:52:14 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id NAA27078 for ; Mon, 26 Oct 1998 13:52:04 -0600 (CST) Original-Received: from cayuga.cs.rochester.edu (cayuga.cs.rochester.edu [192.5.53.209]) by sclp3.sclp.com (8.8.5/8.8.5) with SMTP id OAA27254 for ; Mon, 26 Oct 1998 14:51:36 -0500 (EST) Original-Received: from slate.cs.rochester.edu (slate.cs.rochester.edu [192.5.53.101]) by cayuga.cs.rochester.edu (8.6.9/O) with ESMTP id OAA12624 for ; Mon, 26 Oct 1998 14:51:32 -0500 Original-Received: from rye.cs.rochester.edu (rye.cs.rochester.edu [192.5.53.192]) by slate.cs.rochester.edu (8.6.9/O) with ESMTP id OAA06916 for ; Mon, 26 Oct 1998 14:51:31 -0500 Original-Received: (from zsh@localhost) by rye.cs.rochester.edu (SMI-8.6/N++) id OAA20736; Mon, 26 Oct 1998 14:51:31 -0500 Original-To: ding@gnus.org X-Attribution: ZSH X-Face: 'IF:e51ib'Qbl^(}l^&4-J`'P!@[4~O|&k#:@Gld#b/]oMq&`&FVY._3+b`mzp~Jeve~/#/ ERD!OTe<86UhyN=l`mrPY)M7_}`Ktt\K+58Z!hu7>qU,i.N7TotU[FYE(f1;}`g2xj!u*l`^&=Q!g{ *q|ddto|nkt"$r,K$[)"|6,elPH= GJ6Q In-Reply-To: Karl Kleinpaste's message of "26 Oct 1998 13:39:28 -500" Original-Lines: 49 User-Agent: Gnus/5.07004 (Pterodactyl Gnus v0.40) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:18204 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:18204 >>>>> "Karl" == Karl Kleinpaste writes: Karl> http://www.cs.cmu.edu/~karl/pgnus/no-plain-again contains 1 Karl> screenshot and the original article. The image displays fine Karl> now, the text/html help text has been rendered complete with Karl> apparent clickability on the URL, but the article text is AWOL. 1st portion IS produced, although not correctly. The reason is that there is no header in 1st portion. The attached patch makes gnus show the whole portion. BTW: ietf-drums-narrow-to-header may face the same bug. In GNU Emacs + pgnus 0.40, the html portion is shown before the first mime-button. Is my W3 too old? (WWW 4.0pre.23, URL p4.0pre.23, MM 1.96) ClariNet offers photos in MIME multipart format in two resolutions, [Sm]all and Large [Lg], posted as two articles with the same story. Choose the one that's best for your network connection and optionally read the other one by following the USENET or web-browser links. Our web site has full details on how to use the pictures.[1. text/plain] -- Shenghuo :- cut ----------------------------------------------- --- ChangeLog 1998/10/26 19:37:04 1.1 +++ ChangeLog 1998/10/26 19:38:50 @@ -1,3 +1,7 @@ +Mon Oct 26 14:37:19 1998 Shenghuo ZHU + + * mm-decode.el (mm-copy-to-buffer): Make it works when no header. + Sun Oct 25 23:11:44 1998 Lars Magne Ingebrigtsen * gnus.el: Pterodactyl Gnus v0.40 is released. --- mm-decode.el 1998/10/26 19:36:00 1.1 +++ mm-decode.el 1998/10/26 19:36:32 @@ -174,7 +174,7 @@ (let ((obuf (current-buffer)) beg) (goto-char (point-min)) - (search-forward "\n\n" nil t) + (search-forward-regexp "^\n" nil t) (setq beg (point)) (set-buffer (generate-new-buffer " *mm*")) (insert-buffer-substring obuf beg)