From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/54380 Path: main.gmane.org!not-for-mail From: Romain FRANCOISE Newsgroups: gmane.emacs.gnus.general Subject: Re: iso-8859-2 characters are broken in forwarded messages. Date: Sat, 18 Oct 2003 11:58:15 +0200 Organization: orebokech dot com Sender: ding-owner@lists.math.uh.edu Message-ID: <877k32q348.fsf@orebokech.com> References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1066706525 31841 80.91.224.253 (21 Oct 2003 03:22:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 21 Oct 2003 03:22:05 +0000 (UTC) Original-X-From: ding-owner+M2922@lists.math.uh.edu Tue Oct 21 05:22:03 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1ABn5v-0008RN-00 for ; Tue, 21 Oct 2003 05:22:03 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1ABn5j-0006EM-00; Mon, 20 Oct 2003 22:21:51 -0500 Original-Received: from justine.libertine.org ([66.139.78.221]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1AAnr1-0006YL-00 for ding@lists.math.uh.edu; Sat, 18 Oct 2003 04:58:35 -0500 Original-Received: from yeast.orebokech.com (yeast.orebokech.com [82.67.41.165]) by justine.libertine.org (Postfix) with ESMTP id 21FD83A007E for ; Sat, 18 Oct 2003 04:58:35 -0500 (CDT) Original-Received: from swift (swift [192.168.1.6]) by yeast.orebokech.com (Postfix) with ESMTP id 7194C130CB for ; Sat, 18 Oct 2003 11:56:20 +0200 (CEST) Original-Received: by swift (Postfix, from userid 1000) id C05BE17FAD; Sat, 18 Oct 2003 11:58:16 +0200 (CEST) Original-To: ding@gnus.org Mail-Copies-To: nobody In-Reply-To: (Simon Josefsson's message of "Sat, 18 Oct 2003 03:52:36 +0200") User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3.50 (gnu/linux) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:54380 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:54380 Simon Josefsson writes: > So if forwarding messages stops working for anyone, please holler. There is a small logic error: it does both m-f-make-body-mml and m-f-make-body-plain, resulting in a strange message buffer. The following patch fixes things for me. (I hand-edited this patch because I have other uncommitted changes in message.el, it may not work.) -- Romain FRANCOISE | They're nothing but scared it's a miracle -- http://orebokech.com/ | little mice. Index: message.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/message.el,v retrieving revision 6.370 diff -u -r6.370 message.el --- message.el 18 Oct 2003 03:27:46 -0000 6.370 +++ message.el 18 Oct 2003 09:54:22 -0000 @@ -6091,8 +6090,8 @@ "Content-Type: *multipart/\\(signed\\|encrypted\\)" nil t))))) (message-forward-make-body-mml forward-buffer) - (message-forward-make-body-mime forward-buffer))) - (message-forward-make-body-plain forward-buffer)) + (message-forward-make-body-mime forward-buffer)) + (message-forward-make-body-plain forward-buffer))) (message-position-point)) ;;;###autoload