From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: keyboard-coding-system in Carbon Emacs Date: Fri, 08 Apr 2005 23:38:08 -0400 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1113018125 30114 80.91.229.2 (9 Apr 2005 03:42:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 9 Apr 2005 03:42:05 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Apr 09 05:42:04 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DK6rA-0000TV-Dn for ged-emacs-devel@m.gmane.org; Sat, 09 Apr 2005 05:42:00 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DK6Qn-00061a-JH for ged-emacs-devel@m.gmane.org; Fri, 08 Apr 2005 23:14:45 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DK6OO-000491-2P for emacs-devel@gnu.org; Fri, 08 Apr 2005 23:12:16 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DK6OK-000467-Cu for emacs-devel@gnu.org; Fri, 08 Apr 2005 23:12:13 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DK6OH-000437-RY for emacs-devel@gnu.org; Fri, 08 Apr 2005 23:12:09 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DK6ou-0001JB-7v for emacs-devel@gnu.org; Fri, 08 Apr 2005 23:39:40 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1DK6nQ-0007PZ-KB; Fri, 08 Apr 2005 23:38:08 -0400 Original-To: YAMAMOTO Mitsuharu In-reply-to: (message from YAMAMOTO Mitsuharu on Fri, 08 Apr 2005 14:18:23 +0900) 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:35791 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:35791 In the previous patch, I used global-set-key to bind a handler function for the `language-change' event. But it seems to work best if it is bound in special-event-map so that the event may not be ignored by read-char-exclusive or explicitly read by read-key-sequence. Is it OK to use special-event-map for this purpose? Yes.