From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/47339 Path: main.gmane.org!not-for-mail From: prj@po.cwru.edu (Paul Jarc) Newsgroups: gmane.emacs.gnus.general Subject: Re: gnus-agent typo? Date: Mon, 21 Oct 2002 17:23:46 -0400 Organization: What did you have in mind? A short, blunt, human pyramid? Sender: owner-ding@hpc.uh.edu Message-ID: References: <84n0pbipvq.fsf@crybaby.cs.uni-dortmund.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: main.gmane.org 1035235535 4158 80.91.224.249 (21 Oct 2002 21:25:35 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 21:25:35 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 183k3K-00014p-00 for ; Mon, 21 Oct 2002 23:25: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 183k1w-0005zY-00; Mon, 21 Oct 2002 16:24:09 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 21 Oct 2002 16:24:52 -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 QAA18710 for ; Mon, 21 Oct 2002 16:24:41 -0500 (CDT) Original-Received: (qmail 3827 invoked by alias); 21 Oct 2002 21:23:53 -0000 Original-Received: (qmail 3822 invoked from network); 21 Oct 2002 21:23:52 -0000 Original-Received: from multivac.student.cwru.edu (HELO multivac.cwru.edu) (@129.22.96.25) by gnus.org with SMTP; 21 Oct 2002 21:23:52 -0000 Original-Received: (qmail 10986 invoked by uid 500); 21 Oct 2002 21:24:08 -0000 Original-To: ding@gnus.org In-Reply-To: <84n0pbipvq.fsf@crybaby.cs.uni-dortmund.de> (Kai.Grossjohann@CS.Uni-Dortmund.DE's message of "Fri, 18 Oct 2002 20:05:45 +0200") Mail-Copies-To: nobody Mail-Followup-To: ding@gnus.org Original-Lines: 23 User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i686-pc-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:47339 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:47339 Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Gro=DFjohann) wrote: > What do you think about the following patch for gnus-agent.el? I > guess that unseen was meant instead of seen. > > @@ -1102,7 +1108,7 @@ > gnus-agent-cache) > ;; Add article with marks to list of article headers we want to fetc= h. > (dolist (arts (gnus-info-marks (gnus-get-info group))) > - (unless (memq (car arts) '(seen recent)) > + (unless (memq (car arts) '(unseen recent)) > (setq articles (gnus-range-add articles (cdr arts))))) > (setq articles (sort (gnus-uncompress-sequence articles) '<)) > ;; Remove known articles. Gnus has no unseen mark, AFAIK. Gnus has a seen mark, and displays "." in the *Summary* buffer for articles that *lack* the seen mark. So I think it ought to be: (unless (eq (car arts) 'recent) And then the 'seen articles should be removed from the range afterwards. paul