From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/44989 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.gnus.general Subject: Re: The followup will show the bug. Date: Mon, 27 May 2002 19:59:29 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1022522580 645 127.0.0.1 (27 May 2002 18:03:00 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 27 May 2002 18:03:00 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17COpg-0000AI-00 for ; Mon, 27 May 2002 20:03:00 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 17COpf-0004Q4-00; Mon, 27 May 2002 13:02:59 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 27 May 2002 13:03:13 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id NAA12506 for ; Mon, 27 May 2002 13:03:03 -0500 (CDT) Original-Received: (qmail 977 invoked by alias); 27 May 2002 18:02:43 -0000 Original-Received: (qmail 972 invoked from network); 27 May 2002 18:02:43 -0000 Original-Received: from pfepc.post.tele.dk (193.162.153.4) by gnus.org with SMTP; 27 May 2002 18:02:43 -0000 Original-Received: from defun.localdomain (0xc3f95361.esnxr2.ras.tele.dk [195.249.83.97]) by pfepc.post.tele.dk (Postfix) with ESMTP id 1F6E4264C5B for ; Mon, 27 May 2002 20:02:33 +0200 (CEST) Original-To: ding@gnus.org In-Reply-To: (Kai.Grossjohann@CS.Uni-Dortmund.DE's message of "Sat, 25 May 2002 17:24:33 +0000 (UTC)") Original-Lines: 16 User-Agent: Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.2 (i686-pc-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:44989 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:44989 --=-=-= Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: quoted-printable Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Gro=DFjohann) writes: > Right. Thanks, Reiner. I really have no idea what's eating my last > name. `nnheader-parse-head' is eating it, because it doesn't grok folded headers. I think this patch should fix it: --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=gnus-msg.el.diff --- /home/harder/gnus/lisp/gnus-msg.el Sun May 26 02:18:51 2002 +++ gnus-msg.el Mon May 27 19:33:50 2002 @@ -683,6 +683,7 @@ (message-reply-headers ;; The headers are decoded. (with-current-buffer gnus-article-copy + (nnheader-fold-continuation-lines) (nnheader-parse-head t)))) (message-yank-original) (setq beg (or beg (mark t)))) --=-=-= (BTW, `nnheader-fold-continuation-lines' is a strange name -- it doesn't fold lines, but _u_nfolds them). --=-=-=--