From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.help Subject: Re: Consequent Matches in `NNMAIL-SPLIT-METHOD' Date: Tue, 23 Jun 2009 10:46:27 +0200 Message-ID: <87fxdr72xo.fsf@ambire.localdomain> References: <87d48w8g64.fsf@ambire.localdomain> <87k533fiqa.fsf@alamut.alborz.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1245747228 7131 80.91.229.12 (23 Jun 2009 08:53:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 23 Jun 2009 08:53:48 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Jun 23 10:53:44 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MJ1l9-0000d8-BX for geh-help-gnu-emacs@m.gmane.org; Tue, 23 Jun 2009 10:53:43 +0200 Original-Received: from localhost ([127.0.0.1]:48304 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MJ1l8-0004hJ-Kq for geh-help-gnu-emacs@m.gmane.org; Tue, 23 Jun 2009 04:53:42 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MJ1jk-0004BK-W9 for help-gnu-emacs@gnu.org; Tue, 23 Jun 2009 04:52:17 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MJ1jj-0004AW-Li for help-gnu-emacs@gnu.org; Tue, 23 Jun 2009 04:52:16 -0400 Original-Received: from [199.232.76.173] (port=51272 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MJ1jj-0004AQ-9g for help-gnu-emacs@gnu.org; Tue, 23 Jun 2009 04:52:15 -0400 Original-Received: from smtp-out25.alice.it ([85.33.2.25]:2595) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MJ1ji-000507-RV for help-gnu-emacs@gnu.org; Tue, 23 Jun 2009 04:52:15 -0400 Original-Received: from FBCMMO01.fbc.local ([192.168.68.195]) by smtp-out25.alice.it with Microsoft SMTPSVC(6.0.3790.3959); Tue, 23 Jun 2009 10:52:09 +0200 Original-Received: from FBCMCL01B06.fbc.local ([192.168.69.87]) by FBCMMO01.fbc.local with Microsoft SMTPSVC(6.0.3790.3959); Tue, 23 Jun 2009 10:52:06 +0200 Original-Received: from ambire.localdomain ([79.21.69.87]) by FBCMCL01B06.fbc.local with Microsoft SMTPSVC(6.0.3790.3959); Tue, 23 Jun 2009 10:52:06 +0200 Original-Received: from ttn by ambire.localdomain with local (Exim 4.63) (envelope-from ) id 1MJ1e7-0002i6-8E for help-gnu-emacs@gnu.org; Tue, 23 Jun 2009 10:46:27 +0200 In-Reply-To: <87k533fiqa.fsf@alamut.alborz.net> (Volkan YAZICI's message of "Tue, 23 Jun 2009 11:38:05 +0300") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-OriginalArrivalTime: 23 Jun 2009 08:52:06.0775 (UTC) FILETIME=[E2F54070:01C9F3DF] X-detected-operating-system: by monty-python.gnu.org: Windows 2000 SP4, XP SP1+ X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:65445 Archived-At: () Volkan YAZICI () Tue, 23 Jun 2009 11:38:05 +0300 ("From" "\"OSNews" "osnews") In (info "(gnus) Fancy Mail Splitting") i see: | Normally, VALUE in these splits must match a complete _word_ |according to the fundamental mode syntax table. In other words, all |VALUE's will be implicitly surrounded by `\<...\>' markers, which are |word delimiters. Therefore, if you use the following split, for |example, and note that (let ((s "From: \"OSNews: Kroc Camen\" ") (value "\"OSNews")) (string-match (concat "\\<" value "\\>") s)) => nil You can probably find other interesting info in the documentation, hint hint. thi