From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Richard M. Stallman" Newsgroups: gmane.emacs.devel Subject: Re: Suspicious code in search.c Date: Thu, 20 Oct 2005 19:38:23 -0400 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1129852189 20552 80.91.229.2 (20 Oct 2005 23:49:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 20 Oct 2005 23:49:49 +0000 (UTC) Cc: emacs-devel@gnu.org, "Kim F. Storm" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Oct 21 01:49:43 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1ESk9F-0003FG-3Y for ged-emacs-devel@m.gmane.org; Fri, 21 Oct 2005 01:48:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ESk9E-0005wt-B0 for ged-emacs-devel@m.gmane.org; Thu, 20 Oct 2005 19:48:36 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ESjzO-00030j-Og for emacs-devel@gnu.org; Thu, 20 Oct 2005 19:38:26 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ESjzM-0002y8-Bh for emacs-devel@gnu.org; Thu, 20 Oct 2005 19:38:24 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ESjzL-0002xs-SH for emacs-devel@gnu.org; Thu, 20 Oct 2005 19:38:23 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1ESjzM-0005vr-2u for emacs-devel@gnu.org; Thu, 20 Oct 2005 19:38:24 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1ESjzL-0004ZL-8D; Thu, 20 Oct 2005 19:38:23 -0400 Original-to: handa@m17n.org In-reply-to: (storm@cua.dk) 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:44458 Archived-At: See search.c line 1711-1712: if (ASCII_BYTE_P (*ptr) || ! multibyte) ch = *ptr; --> else if (charset_base --> && (pat_end - ptr) == 1 || CHAR_HEAD_P (ptr[1])) { unsigned char *charstart = ptr - 1; Handa, you wrote that code in April. Can you clear it up?