From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/34814 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: -request-set-mark interface Date: Fri, 16 Feb 2001 17:28:37 +0100 (CET) Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: main.gmane.org 1035170667 32230 80.91.224.250 (21 Oct 2002 03:24:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:24:27 +0000 (UTC) Cc: Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by mailhost.sclp.com (Postfix) with ESMTP id CDC19D04A0 for ; Fri, 16 Feb 2001 11:29:46 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.3/8.9.3) with ESMTP id KAC15446; Fri, 16 Feb 2001 10:29:07 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 16 Feb 2001 10:28:24 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id KAA21159 for ; Fri, 16 Feb 2001 10:28:14 -0600 (CST) Original-Received: from slipsten.extundo.com (slipsten.extundo.com [195.42.214.241]) by mailhost.sclp.com (Postfix) with ESMTP id DC1E2D04A0 for ; Fri, 16 Feb 2001 11:28:43 -0500 (EST) Original-Received: from localhost (jas@localhost) by slipsten.extundo.com (8.9.3/8.9.3) with ESMTP id RAA05315; Fri, 16 Feb 2001 17:28:37 +0100 X-Authentication-Warning: slipsten.extundo.com: jas owned process doing -bs Original-To: Paul Jarc In-Reply-To: Precedence: list X-Majordomo: 1.94.jlt7 Original-Lines: 29 Xref: main.gmane.org gmane.emacs.gnus.general:34814 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:34814 On 16 Feb 2001, Paul Jarc wrote: > The 5.8.8 info says: > #`(nnchoke-request-set-mark GROUP ACTION &optional SERVER)' > ... > # ACTION is a list of mark setting requests, having this format: > # > # (RANGE ACTION MARK) > # > # Range is a range of articles you wish to update marks on. > ... > # An example action list: > # > # (((5 12 30) 'del '(tick)) > # ((10 . 90) 'add '(read expire)) > # ((92 94) 'del '(read))) > > Is this right? It seems that the second action should be: > (((10 . 90)) 'add '(read expire)) > Can RANGE really be a single range (a number or cons of two numbers), > or is it always a list of ranges? RANGE can be a cons of two numbers (like in the example, which I think is correct). I don't think ranges are allowed to be a single number. The range EBNF don't indicate that, and the gnus-range-* functions doesn't seem to handle it either.