From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: gnus-summary-refer-thread does not find all Date: Mon, 24 Jan 2005 15:24:49 -0500 Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1106600101 15168 80.91.229.6 (24 Jan 2005 20:55:01 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 24 Jan 2005 20:55:01 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jan 24 21:54:54 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CtBEb-0002XQ-00 for ; Mon, 24 Jan 2005 21:54:53 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CtBQp-0004I0-Cj for ged-emacs-devel@m.gmane.org; Mon, 24 Jan 2005 16:07:31 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1CtBQI-00046D-KN for emacs-devel@gnu.org; Mon, 24 Jan 2005 16:06:58 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1CtBK6-0001aI-PK for emacs-devel@gnu.org; Mon, 24 Jan 2005 16:00:35 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CtBJw-0001Ls-9P for emacs-devel@gnu.org; Mon, 24 Jan 2005 16:00:24 -0500 Original-Received: from [132.204.24.67] (helo=mercure.iro.umontreal.ca) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CtAla-0000df-LQ for emacs-devel@gnu.org; Mon, 24 Jan 2005 15:24:54 -0500 Original-Received: from hidalgo.iro.umontreal.ca (hidalgo.iro.umontreal.ca [132.204.27.50]) by mercure.iro.umontreal.ca (Postfix) with ESMTP id 4D5188282AD; Mon, 24 Jan 2005 15:24:54 -0500 (EST) Original-Received: from asado.iro.umontreal.ca (asado.iro.umontreal.ca [132.204.24.84]) by hidalgo.iro.umontreal.ca (Postfix) with ESMTP id 40C8E4AC0B5; Mon, 24 Jan 2005 15:24:49 -0500 (EST) Original-Received: by asado.iro.umontreal.ca (Postfix, from userid 20848) id 2D5C74BB7A; Mon, 24 Jan 2005 15:24:49 -0500 (EST) Original-To: emacs-devel@gnu.org, bugs@gnus.org User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/21.3.50 (gnu/linux) X-DIRO-MailScanner-Information: Please contact the ISP for more information X-DIRO-MailScanner: Found to be clean X-DIRO-MailScanner-SpamCheck: n'est pas un polluriel, SpamAssassin (score=-4.762, requis 5, autolearn=not spam, AWL 0.14, BAYES_00 -4.90) X-MailScanner-From: monnier@iro.umontreal.ca X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:32535 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:32535 I often find that A T doesn't find all the articles I'm looking for. It turns out that one of the reason might be the following: gnus-summary-limit-include-thread calls gnus-summary-limit-include-matching-articles with "subject" and a subject-regexp in decoded form (with non-ASCII chars). These args are then passed to gnus-find-matching-articles which compares uses the regexp on the output of mail-header-subject but this output is not decoded (accented chars are represented by sequences of other chars). Stefan