From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/60379 Path: news.gmane.org!not-for-mail From: Matthieu Moy Newsgroups: gmane.emacs.gnus.general Subject: [PATCH] bugfix: always reply to 1 article only with "F" Date: Tue, 31 May 2005 11:01:04 +0200 Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1117530595 21482 80.91.229.2 (31 May 2005 09:09:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 May 2005 09:09:55 +0000 (UTC) Original-X-From: ding-owner+M8906@lists.math.uh.edu Tue May 31 11:09:54 2005 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Dd2jy-0001k9-DM for ding-account@gmane.org; Tue, 31 May 2005 11:08:50 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1Dd2d4-0001Tw-00; Tue, 31 May 2005 04:01:42 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1Dd2cw-0001Tq-00 for ding@lists.math.uh.edu; Tue, 31 May 2005 04:01:34 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by util2.math.uh.edu with esmtp (Exim 4.30) id 1Dd2cu-0002aQ-R4 for ding@lists.math.uh.edu; Tue, 31 May 2005 04:01:33 -0500 Original-Received: from imag.imag.fr ([129.88.30.1]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1Dd2ch-0003BN-00 for ; Tue, 31 May 2005 11:01:19 +0200 Original-Received: from mail-veri.imag.fr (mail-veri.imag.fr [129.88.43.52]) by imag.imag.fr (8.13.0/8.13.0) with ESMTP id j4V915eL020966 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Tue, 31 May 2005 11:01:05 +0200 (CEST) Original-Received: from ecrins.imag.fr ([129.88.43.124]) by mail-veri.imag.fr with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 3.35 #1) id 1Dd2cS-0001EK-00 for ding@gnus.org; Tue, 31 May 2005 11:01:04 +0200 Original-Received: from moy by ecrins.imag.fr with local (Exim 4.50) id 1Dd2cS-0004V4-GY for ding@gnus.org; Tue, 31 May 2005 11:01:04 +0200 Original-To: ding User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.4 (gnu/linux) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.6 (imag.imag.fr [129.88.30.1]); Tue, 31 May 2005 11:01:05 +0200 (CEST) X-IMAG-MailScanner: Found to be clean X-IMAG-MailScanner-Information: Please contact the ISP for more information X-Spam-Score: -4.9 (----) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:60379 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:60379 Hi, Don't know if this has been fixed in the CVS version, but I have very odd behavior with No Gnus v0.3 : Sometimes, `F' followup to all the articles in the same summary buffer (like when marking several articles). The following patch solves the problem: --- gnus-msg.el~ 2005-03-09 01:58:34.000000000 +0100 +++ gnus-msg.el 2005-05-31 10:57:05.000000000 +0200 @@ -741,7 +741,7 @@ The text in the region will be yanked. If the region isn't active, the entire article will be yanked." (interactive "P") - (gnus-summary-followup (gnus-summary-work-articles n) force-news)) + (gnus-summary-followup (gnus-summary-work-articles (or n 1)) force-news)) (defun gnus-summary-followup-to-mail (&optional arg) "Followup to the current mail message via news." -- Matthieu