From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kenichi Handa Newsgroups: gmane.emacs.devel Subject: Re: find-composition still depends on the composition property Date: Wed, 22 Oct 2008 10:17:57 +0900 Message-ID: References: <87tzbh7kd9.fsf@jurta.org> <87tzb5ikrw.fsf@jurta.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII X-Trace: ger.gmane.org 1224638292 12008 80.91.229.12 (22 Oct 2008 01:18:12 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 22 Oct 2008 01:18:12 +0000 (UTC) Cc: emacs-devel@gnu.org To: Juri Linkov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Oct 22 03:19:13 2008 connect(): Connection refused Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KsSNV-0002ba-8b for ged-emacs-devel@m.gmane.org; Wed, 22 Oct 2008 03:19:13 +0200 Original-Received: from localhost ([127.0.0.1]:38601 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KsSMP-0002oI-Tg for ged-emacs-devel@m.gmane.org; Tue, 21 Oct 2008 21:18:05 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KsSMM-0002o7-F8 for emacs-devel@gnu.org; Tue, 21 Oct 2008 21:18:02 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KsSMK-0002nm-Qd for emacs-devel@gnu.org; Tue, 21 Oct 2008 21:18:01 -0400 Original-Received: from [199.232.76.173] (port=37743 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KsSMK-0002nj-LB for emacs-devel@gnu.org; Tue, 21 Oct 2008 21:18:00 -0400 Original-Received: from mx1.aist.go.jp ([150.29.246.133]:53627) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KsSMJ-0006Dz-Rg for emacs-devel@gnu.org; Tue, 21 Oct 2008 21:18:00 -0400 Original-Received: from rqsmtp2.aist.go.jp (rqsmtp2.aist.go.jp [150.29.254.123]) by mx1.aist.go.jp with ESMTP id m9M1HwHC010358; Wed, 22 Oct 2008 10:17:58 +0900 (JST) env-from (handa@m17n.org) Original-Received: from smtp2.aist.go.jp by rqsmtp2.aist.go.jp with ESMTP id m9M1Hvaq002350; Wed, 22 Oct 2008 10:17:57 +0900 (JST) env-from (handa@m17n.org) Original-Received: by smtp2.aist.go.jp with ESMTP id m9M1Hvdt018481; Wed, 22 Oct 2008 10:17:57 +0900 (JST) env-from (handa@m17n.org) Original-Received: from handa by etlken.m17n.org with local (Exim 4.69) (envelope-from ) id 1KsSMH-0005T2-Ek; Wed, 22 Oct 2008 10:17:57 +0900 In-reply-to: <87tzb5ikrw.fsf@jurta.org> (message from Juri Linkov on Wed, 22 Oct 2008 02:46:48 +0300) User-Agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/23.0.60 (i686-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) X-detected-operating-system: by monty-python.gnu.org: Solaris 9 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: news.gmane.org gmane.emacs.devel:104800 Archived-At: In article <87tzb5ikrw.fsf@jurta.org>, Juri Linkov writes: > I also have another question about composition that seems like a bug. > Please open the HELLO file and put point at the end of the line with the > Russian sample text. Now type M-b `backward-word' and see that point > stops inside the whole word on the composed character, i.e. the composed > character is not word-constituent now. Ah, it's not a bug of composition, but a bug of scan_words (syntax.c). Currently U+301 is labeled as `latin' script, and the surrounding characters there are `cyrillic' script. Thus, that funciton thinks that there's a word boundary. I'll find a way to solve this problem. --- Kenichi Handa handa@ni.aist.go.jp