From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/61604 Path: news.gmane.org!not-for-mail From: Alan Shutko Newsgroups: gmane.emacs.gnus.general Subject: Re: SOP or other forward functions get reverse order Date: Wed, 21 Dec 2005 16:58:29 -0600 Message-ID: <87ek4683ca.fsf@vera.springies.com> References: <877j9ybrps.fsf@newsguy.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1135259762 21633 80.91.229.2 (22 Dec 2005 13:56:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 22 Dec 2005 13:56:02 +0000 (UTC) Original-X-From: ding-owner+m10137@lists.math.uh.edu Thu Dec 22 14:56:00 2005 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EpQvG-0007sP-W7 for ding-account@gmane.org; Thu, 22 Dec 2005 14:55:59 +0100 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 1EpQv8-0006qb-00; Thu, 22 Dec 2005 07:55:50 -0600 Original-Received: from nas02.math.uh.edu ([129.7.128.40]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1EpQsn-0006qV-00 for ding@lists.math.uh.edu; Thu, 22 Dec 2005 07:53:25 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas02.math.uh.edu with esmtp (Exim 4.52) id 1EpQsk-0002qc-NC for ding@lists.math.uh.edu; Thu, 22 Dec 2005 07:53:25 -0600 Original-Received: from 209-74-153-106.brick.net ([209.74.153.106] helo=simon.springies.com) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1EpQsj-0001HD-00 for ; Thu, 22 Dec 2005 14:53:21 +0100 Original-Received: from vera.springies.com (wesley.springies.com [192.168.1.2]) by simon.springies.com (8.13.4/8.13.4) with ESMTP id jBMDrJqJ016087 for ; Thu, 22 Dec 2005 07:53:19 -0600 Original-Received: from vera.springies.com (vera.springies.com [127.0.0.1]) by vera.springies.com (8.13.4/8.13.4) with ESMTP id jBMDrImT003087 for ; Thu, 22 Dec 2005 07:53:19 -0600 Original-Received: (from ats@localhost) by vera.springies.com (8.13.4/8.13.4/Submit) id jBM2mfQU001802; Wed, 21 Dec 2005 20:48:41 -0600 Original-To: ding@gnus.org In-Reply-To: (Steven E. Harris's message of "Wed, 21 Dec 2005 08:00:53 -0800") User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) X-Spam-Score: -2.6 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:61604 Archived-At: --=-=-= "Steven E. Harris" writes: > Recently I tried forwarding a set of messages, and had to redo it five > or six times because the order seemed backward, despite my having > process-marked the messages in the desired order. Yes, it's broken. I don't know why, cvs annotate isn't working on that file for me, but here's the fix I've been using. -- Alan Shutko - I am the rocks. Balance the budget. Declare politicians a game species! --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=gnus-uu.diff Index: lisp/gnus-uu.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/gnus-uu.el,v retrieving revision 7.20 diff -u -r7.20 gnus-uu.el --- lisp/gnus-uu.el 25 Sep 2005 21:27:49 -0000 7.20 +++ lisp/gnus-uu.el 21 Dec 2005 22:57:34 -0000 @@ -1127,7 +1127,7 @@ (setq n (1- n)))) (nreverse articles))) (gnus-newsgroup-processable - (reverse gnus-newsgroup-processable)) + gnus-newsgroup-processable) (t (gnus-uu-find-articles-matching))))) --=-=-=--