From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/40640 Path: main.gmane.org!not-for-mail From: prj@po.cwru.edu (Paul Jarc) Newsgroups: gmane.emacs.gnus.general Subject: Re: more MFT address stuff Date: Sat, 01 Dec 2001 01:13:45 -0500 Organization: What did you have in mind? A short, blunt, human pyramid? Sender: owner-ding@hpc.uh.edu Message-ID: References: <2n1yifwta0.fsf@zsh.cs.rochester.edu> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035176159 2008 80.91.224.250 (21 Oct 2002 04:55:59 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 04:55:59 +0000 (UTC) Return-Path: Original-Received: (qmail 27261 invoked from network); 1 Dec 2001 06:14:47 -0000 Original-Received: from malifon.math.uh.edu (mail@129.7.128.13) by mastaler.com with SMTP; 1 Dec 2001 06:14:47 -0000 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 16A3PW-00063R-00; Sat, 01 Dec 2001 00:14:02 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sat, 01 Dec 2001 00:13:47 -0600 (CST) 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 AAA14810 for ; Sat, 1 Dec 2001 00:13:37 -0600 (CST) Original-Received: (qmail 27245 invoked by alias); 1 Dec 2001 06:13:46 -0000 Original-Received: (qmail 27240 invoked from network); 1 Dec 2001 06:13:45 -0000 Original-Received: from multivac.student.cwru.edu (HELO multivac.cwru.edu) (qmail-remote@129.22.96.25) by gnus.org with SMTP; 1 Dec 2001 06:13:45 -0000 Original-Received: (qmail 6799 invoked by uid 500); 1 Dec 2001 06:14:07 -0000 Original-To: ding@gnus.org In-Reply-To: <2n1yifwta0.fsf@zsh.cs.rochester.edu> (ShengHuo ZHU's message of "Fri, 30 Nov 2001 21:47:35 -0500") Mail-Copies-To: nobody Mail-Followup-To: ding@gnus.org Original-Lines: 29 User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/20.7 (i386-redhat-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:40640 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:40640 ShengHuo ZHU wrote: > prj@po.cwru.edu (Paul Jarc) writes: >> Grr. I should test first next time. This one works. > > Installed. I should also think a bit more. This one avoids some false positives; the regexp was a bit off. * message.el: fix the m-s-a-file regexp. Index: lisp/message.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/message.el,v retrieving revision 6.172 diff -u -r6.172 message.el --- lisp/message.el 2001/12/01 02:49:27 6.172 +++ lisp/message.el 2001/12/01 06:07:39 @@ -3786,7 +3786,7 @@ (setq end (point)) (if (bolp) (setq end (1- end))) (setq item (regexp-quote (buffer-substring begin end))) - (if re (setq re (concat re "\\)\\|\\(" item)) + (if re (setq re (concat re "\\|" item)) (setq re (concat "\\`\\(" item)))) (and re (list (concat re "\\)\\'")))))))) (mft-regexps (apply 'append message-subscribed-regexps paul