From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Jan D." Newsgroups: gmane.emacs.devel Subject: Re: [kzeitler@lucent.com: Re: compose key on SUN keyboard creates 2 characters (and beeps)] Date: Tue, 13 Jan 2004 17:30:24 +0100 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <384A6738-44F5-11D8-9EE7-00039363E640@swipnet.se> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 (Apple Message framework v609) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1074053127 29514 80.91.224.253 (14 Jan 2004 04:05:27 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 14 Jan 2004 04:05:27 +0000 (UTC) Cc: rms@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Wed Jan 14 05:05:22 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AgcHS-0002we-00 for ; Wed, 14 Jan 2004 05:05:22 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1AgcHR-0006cJ-00 for ; Wed, 14 Jan 2004 05:05:21 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1Agc0X-0007mC-30 for emacs-devel@quimby.gnus.org; Tue, 13 Jan 2004 22:47:53 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1Agbzt-0007kV-IV for emacs-devel@gnu.org; Tue, 13 Jan 2004 22:47:13 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AgSbJ-0007Gw-VZ for emacs-devel@gnu.org; Tue, 13 Jan 2004 12:45:47 -0500 Original-Received: from [193.201.16.94] (helo=stubby.bodenonline.com) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AgRRx-0003h3-Mv; Tue, 13 Jan 2004 11:31:29 -0500 Original-Received: from accessno42.bodenonline.com (accessno42.bodenonline.com [193.201.16.44]) by stubby.bodenonline.com (8.12.1/8.12.1) with ESMTP id i0DHO4wq028918; Tue, 13 Jan 2004 18:24:05 +0100 In-Reply-To: Original-To: Klaus Zeitler X-Mailer: Apple Mail (2.609) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:19169 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:19169 > Jan> I would expect chars_matched to be set to 0 when a complete > character > Jan> has been composed. But this may not be so, it all depends on > what Sun > Jan> has done. > > I checked (on Solaris 5.8) and it is 3 after the 3rd key press. Okay. > Jan> But is there a reason why XIM is not enabled for you? > > I have no idea. I only know that XIM exists. I just checked config.h > and > there's HAVE_XIM and USE_XIM both set to 1. So in theory it should be > there. > What should I check? Check if you have HAVE_X_I18N and HAVE_X11R6_XIM defined. The best way is to step in xterm.c in the debugger and see why XmbLookupString is not called. It may be some problem with creating the XIC or the XIM. Jan D.