From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/44795 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.gnus.general Subject: Re: gnus no longer marks multiple messages with gnus-replied-mark. Date: Sat, 11 May 2002 02:13:55 +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 1021076314 18072 127.0.0.1 (11 May 2002 00:18:34 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 11 May 2002 00:18:34 +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 176Kan-0004hN-00 for ; Sat, 11 May 2002 02:18:34 +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 176KZN-0004V6-00; Fri, 10 May 2002 19:17:05 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 10 May 2002 19:17:21 -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 TAA23885 for ; Fri, 10 May 2002 19:17:10 -0500 (CDT) Original-Received: (qmail 10888 invoked by alias); 11 May 2002 00:16:31 -0000 Original-Received: (qmail 10883 invoked from network); 11 May 2002 00:16:31 -0000 Original-Received: from fepb.post.tele.dk (195.41.46.145) by gnus.org with SMTP; 11 May 2002 00:16:31 -0000 Original-Received: from defun.localdomain ([195.215.96.235]) by fepB.post.tele.dk (InterMail vM.4.01.03.23 201-229-121-123-20010418) with ESMTP id <20020511001629.DTUZ19716.fepB.post.tele.dk@defun.localdomain> for ; Sat, 11 May 2002 02:16:29 +0200 Original-To: ding@gnus.org In-Reply-To: (phoner@blah.pl's message of "Wed, 8 May 2002 09:52:24 +0000 (UTC)") Original-Lines: 12 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:44795 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:44795 --=-=-= phoner@blah.pl (Maciej Matysiak) writes: > i remember that i could mark few mails and reply to them at once in one mail, > and after sending the reply gnus marked them as replied. this no longer works, > only first message has the mark (and i'm not sure when it broke, i'm using > recent oort from cvs). Does this patch fix it for you? --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=gnus-msg.el.diff --- /home/harder/gnus/lisp/gnus-msg.el Thu May 2 02:05:23 2002 +++ gnus-msg.el Sat May 11 02:09:38 2002 @@ -788,7 +788,7 @@ force-news) (when article-buffer (gnus-copy-article-buffer)) - (let ((gnus-article-reply (and article-buffer (gnus-summary-article-number))) + (let ((gnus-article-reply (and article-buffer (gnus-summary-work-articles nil))) (add-to-list gnus-add-to-list)) (gnus-setup-message (cond (yank 'reply-yank) (article-buffer 'reply) --=-=-=--