From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/63978 Path: news.gmane.org!not-for-mail From: Kevin Rodgers Newsgroups: gmane.emacs.pretest.bugs,gmane.emacs.gnus.general Subject: Re: Slow operations on buffers of tens of megabytes Date: Mon, 13 Nov 2006 09:40:37 -0700 Organization: IHS Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1163436212 13173 80.91.229.2 (13 Nov 2006 16:43:32 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 13 Nov 2006 16:43:32 +0000 (UTC) Cc: ding@gnus.org Original-X-From: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Mon Nov 13 17:43:30 2006 Return-path: Envelope-to: gebp-emacs-pretest-bug@gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Gjeta-000174-9K for gebp-emacs-pretest-bug@gmane.org; Mon, 13 Nov 2006 17:42:55 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GjetZ-0000mE-OL for gebp-emacs-pretest-bug@gmane.org; Mon, 13 Nov 2006 11:42:53 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GjetT-0000m0-6m for emacs-pretest-bug@gnu.org; Mon, 13 Nov 2006 11:42:47 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GjetR-0000l8-Jf for emacs-pretest-bug@gnu.org; Mon, 13 Nov 2006 11:42:46 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GjetR-0000ku-B1 for emacs-pretest-bug@gnu.org; Mon, 13 Nov 2006 11:42:45 -0500 Original-Received: from [80.91.229.2] (helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1GjetQ-0005VO-LA for emacs-pretest-bug@gnu.org; Mon, 13 Nov 2006 11:42:45 -0500 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1Gjesj-0000vr-D1 for emacs-pretest-bug@gnu.org; Mon, 13 Nov 2006 17:42:01 +0100 Original-Received: from 207.167.42.206 ([207.167.42.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 13 Nov 2006 17:42:01 +0100 Original-Received: from ihs_4664 by 207.167.42.206 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 13 Nov 2006 17:42:01 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-pretest-bug@gnu.org Original-Lines: 18 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 207.167.42.206 User-Agent: Thunderbird 1.5.0.8 (Windows/20061025) In-Reply-To: X-BeenThere: emacs-pretest-bug@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for CVS Emacs." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Errors-To: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.pretest.bugs:15067 gmane.emacs.gnus.general:63978 Archived-At: Reiner Steib wrote: > As Elias Oltmanns already has pointed out, the problem is that > nnfolder often does re-searches for "X-Gnus-Article-Number: " > (`nnfolder-article-marker'). Wrapping these calls inside ... > > (with-case-table some-case-table-without-dotless-i/dotted-I > (re-search-forward nnfolder-article-marker ...)) > > ... might be a possibility. But there's no `with-case-table' and I > don't know enough about case table to develop a fix that doesn't break > anything else. Just copy-and-paste the definition of with-syntax-table from subr.el, replace `(syntax-table)' with `(current-case-table)', then replace any remaining occurrences of "syntax" with "case". -- Kevin