From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/29087 Path: main.gmane.org!not-for-mail From: Toby Speight Newsgroups: gmane.emacs.gnus.general Subject: Re: problem with fancy-split's ! operator; bug? Date: 04 Feb 2000 15:44:41 +0000 Organization: Citrix Systems (Cambridge) 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 1035165818 753 80.91.224.250 (21 Oct 2002 02:03:38 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:03:38 +0000 (UTC) Return-Path: Original-Received: from lisa.math.uh.edu (lisa.math.uh.edu [129.7.128.49]) by mailhost.sclp.com (Postfix) with ESMTP id 89FFCD051F for ; Fri, 4 Feb 2000 10:47:20 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by lisa.math.uh.edu (8.9.1/8.9.1) with ESMTP id JAB03176; Fri, 4 Feb 2000 09:45:35 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 04 Feb 2000 09:45:03 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id JAA14190 for ; Fri, 4 Feb 2000 09:44:48 -0600 (CST) Original-Received: from gatekeeper.ctxuk.citrix.com (gatekeeper.ctxuk.citrix.com [195.153.38.114]) by mailhost.sclp.com (Postfix) with ESMTP id D1B1ED051F for ; Fri, 4 Feb 2000 10:44:44 -0500 (EST) Original-Received: from sh.ctxuk.citrix.com (sh.ctxuk.citrix.com [10.30.224.4]) by gatekeeper.ctxuk.citrix.com (8.8.7/BSCF-1.7) with ESMTP id PAA08943 for ; Fri, 4 Feb 2000 15:44:43 GMT Original-Received: from hwav01.ctxuk.citrix.com (hwav01.ctxuk.citrix.com [10.30.224.26]) by sh.ctxuk.citrix.com (8.8.7/BSCF-1.7) with SMTP id PAA27038 for ; Fri, 4 Feb 2000 15:44:42 GMT Original-Received: from 10.30.224.23 by hwav01.ctxuk.citrix.com (InterScan E-Mail VirusWall NT); Fri, 04 Feb 2000 15:44:42 -0000 (GMT Standard Time) Original-Received: from lanber.cam.eu.citrix.com ([10.70.1.235]) by hwmail01.ctxuk.citrix.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id D23CRTQR; Fri, 4 Feb 2000 15:44:42 -0000 Original-To: The Gnus Mailing List Original-Lines: 32 In-Reply-To: Colin Rafferty's message of "04 Feb 2000 08:08:50 -0500" X-Author-Info: Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:29087 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:29087 >> Colin Rafferty 0> In article , 0> > wrote: >> Toby Speight writes: >> >>>> Colin Rafferty 0> In article , 0> > wrote: >> Can you give an example of something that works with the former >> code, that behaves differently in the latter? >> >> Just about anything. Since the former code expects a list of >> groups in which to put the mail, and the latter code expects a >> split to parse, pretty much anything will owrk differently. Did this used to work at one time? I have old code which I don't use any more, which looks like dot-gnus> (defun tms-split-lists (list) dot-gnus> (goto-char (point-min)) dot-gnus> (let (groups name) dot-gnus> (while (re-search-forward tms-list-regexp nil t) dot-gnus> (setq name (match-string 1)) dot-gnus> (or (member name groups) dot-gnus> (setq groups (cons name groups)))) dot-gnus> (cons '& groups))) In particular, note that I put '& at the beginning of the list. This worked in 5.5 or 5.7, I think.