From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/59709 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general,gmane.emacs.devel Subject: Re: re-search bug? Date: Thu, 03 Feb 2005 12:13:51 +0900 Organization: Emacsen advocacy group Message-ID: References: <200502030223.LAA24558@etlken.m17n.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1107400662 29900 80.91.229.2 (3 Feb 2005 03:17:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 3 Feb 2005 03:17:42 +0000 (UTC) Cc: emacs-devel@gnu.org, ding@gnus.org Original-X-From: ding-owner+M8248@lists.math.uh.edu Thu Feb 03 04:17:42 2005 Original-Received: from malifon.math.uh.edu ([129.7.128.13] ident=mail) by ciao.gmane.org with esmtp (Exim 4.43) id 1CwXUt-00071F-Hp for ding-account@gmane.org; Thu, 03 Feb 2005 04:17:35 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1CwXRo-0003oS-00; Wed, 02 Feb 2005 21:14:24 -0600 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1CwXRh-0003oM-00 for ding@lists.math.uh.edu; Wed, 02 Feb 2005 21:14:17 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by util2.math.uh.edu with esmtp (Exim 4.30) id 1CwXRR-0004hz-L7 for ding@lists.math.uh.edu; Wed, 02 Feb 2005 21:14:01 -0600 Original-Received: from washington.hostforweb.net ([69.61.11.2]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1CwXRQ-0002kC-00 for ; Thu, 03 Feb 2005 04:14:00 +0100 Original-Received: from [127.0.0.1] (helo=localhost) by washington.hostforweb.net with esmtp (Exim 4.44) id 1CwXRU-0000ZA-K2; Wed, 02 Feb 2005 22:14:04 -0500 Original-To: Kenichi Handa X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3 (gnu/linux) Cancel-Lock: sha1:dJbUgaZ3ApCY5HrJu0/YXhOCVEc= X-Hashcash: 1:20:050203:handa@m17n.org::na3ANpprenYdLUCe:000000000000000000000000000000000000000000000007kO7 X-Hashcash: 1:20:050203:emacs-devel@gnu.org::bISlnRwygsHk3l0e:0000000000000000000000000000000000000000000F+J X-Hashcash: 1:20:050203:ding@gnus.org::oYvrjcbKtrrSdVBz:00008s5t X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - washington.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -4.5 (----) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu X-MailScanner-From: ding-owner+m8248@lists.math.uh.edu X-MailScanner-To: ding-account@gmane.org Xref: main.gmane.org gmane.emacs.gnus.general:59709 gmane.emacs.devel:32783 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:59709 >>>>> In <200502030223.LAA24558@etlken.m17n.org> Kenichi Handa wrote: >> With the latest Emacs CVS, the following form causes an error. >> (with-temp-buffer >> (insert "Sender: ") >> (let ((pt (point))) >> (insert "ding-owner@lists.math.uh.edu") >> (re-search-backward "ding-owner@lists\\.math\\.uh\\.edu" pt))) > This is due to my last change for handling cases for > I-WITH-DOT-ABOVE and DOTLESS-i. I've just cancelled those > changes. I confirmed it has been fixed. Thanks. At just the time Handa-san fixed it, I was looking for the cause of the problem. ;-) > It seems that the current code in casefiddle.c has a serious > bug in supporting this kind of case-mapping. > i <--up/downcase--> I > DOTLESS-i --upcase-> I > I-WITH-DOT-ABOVE --downcase-> i I see it is the case issue. The form above did work if `case-fold-search' was bound to nil. Regards,