From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kenichi Handa Newsgroups: gmane.emacs.devel,gmane.emacs.pretest.bugs Subject: Re: Can't isearch =?iso-8859-1?q?=27=F6=27?= Date: Thu, 28 Apr 2005 20:31:08 +0900 (JST) Message-ID: <200504281131.UAA18072@etlken.m17n.org> References: <296c27822efac3bf0271bf82f19ca485@Web.DE> <606b3ca39653eb6a62837e841402d5c8@Web.DE> <87fyxtxwku.fsf-monnier+emacs@gnu.org> <200504142342.IAA12606@etlken.m17n.org> <87br8g2pe0.fsf-monnier+emacs@gnu.org> <200504180252.LAA20878@etlken.m17n.org> <877jj07owm.fsf-monnier+emacs@gnu.org> <200504180516.OAA21166@etlken.m17n.org> <87k6n05jo7.fsf-monnier+emacs@gnu.org> <200504250632.PAA09312@etlken.m17n.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1114688292 23890 80.91.229.2 (28 Apr 2005 11:38:12 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 28 Apr 2005 11:38:12 +0000 (UTC) Cc: Peter_Dyballa@Web.DE, emacs-devel@gnu.org, monnier@iro.umontreal.ca, emacs-pretest-bug@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Apr 28 13:38:04 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DR7KW-0006PL-57 for ged-emacs-devel@m.gmane.org; Thu, 28 Apr 2005 13:37:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DR7Qd-0004rU-9c for ged-emacs-devel@m.gmane.org; Thu, 28 Apr 2005 07:43:35 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DR7Oq-0003h7-U1 for emacs-devel@gnu.org; Thu, 28 Apr 2005 07:41:45 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DR7Op-0003gB-31 for emacs-devel@gnu.org; Thu, 28 Apr 2005 07:41:44 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DR7Om-0003Sf-C1; Thu, 28 Apr 2005 07:41:40 -0400 Original-Received: from [192.47.44.130] (helo=tsukuba.m17n.org) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1DR7Is-0000Kt-9T; Thu, 28 Apr 2005 07:35:34 -0400 Original-Received: from nfs.m17n.org (nfs.m17n.org [192.47.44.7]) by tsukuba.m17n.org (8.12.3/8.12.3/Debian-7.1) with ESMTP id j3SBV8dY006535; Thu, 28 Apr 2005 20:31:08 +0900 Original-Received: from etlken.m17n.org (etlken.m17n.org [192.47.44.125]) by nfs.m17n.org (8.12.3/8.12.3/Debian-7.1) with ESMTP id j3SBV8DI031034; Thu, 28 Apr 2005 20:31:08 +0900 Original-Received: (from handa@localhost) by etlken.m17n.org (8.8.8+Sun/3.7W-2001040620) id UAA18072; Thu, 28 Apr 2005 20:31:08 +0900 (JST) Original-To: rms@gnu.org In-reply-to: (message from Richard Stallman on Tue, 26 Apr 2005 06:06:06 -0400) User-Agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/22.0.50 (sparc-sun-solaris2.6) MULE/5.0 (SAKAKI) 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:36476 gmane.emacs.pretest.bugs:7172 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:36476 In article , Richard Stallman writes: > We (me and Stefan) has already shown opinions and solutions > to the problem. Richard, could you please decide what to > do? > I have not been reading these messages, because they were numerous and > long. Now that there are two proposals, would you please show me the > two proposals, each described clearly from scratch in one message? The original problem was that when a user have `=F6' of iso-8859-15 in a buffer of iso-8859-15 coding system, he can't isearch that character by typing `=F6' on his keyboard because that key is recognized as `=F6' of iso-8859-1. Stefan's proposal is to translate a character by translation-table-for-input in read_char (). This is a generic solution, but it makes read_char () return different character depending on the buffer-file-coding-system of the current buffer, which may or may not cause anther problem. My proposal is to translate a character by translate-table-for-input in isearch-process-search-char. This is a limitted solution only for the current problem. --- Ken'ichi HANDA handa@m17n.org