From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Stefan Monnier" Newsgroups: gmane.emacs.devel Subject: Re: Pretest next week Date: Thu, 22 Jan 2009 14:33:19 -0500 Message-ID: References: <87y6x4ue2u.fsf@cyd.mit.edu><87mydjv4bd.fsf@cyd.mit.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1232653954 32361 80.91.229.12 (22 Jan 2009 19:52:34 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 22 Jan 2009 19:52:34 +0000 (UTC) Cc: Chong Yidong , YAMAMOTO Mitsuharu , emacs-devel@gnu.org To: "Adrian Robert" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jan 22 20:53:46 2009 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 1LQ5cS-0005AR-R3 for ged-emacs-devel@m.gmane.org; Thu, 22 Jan 2009 20:53:41 +0100 Original-Received: from localhost ([127.0.0.1]:54805 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LQ5bB-0002LN-5J for ged-emacs-devel@m.gmane.org; Thu, 22 Jan 2009 14:52:21 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LQ5R7-0005jF-RR for emacs-devel@gnu.org; Thu, 22 Jan 2009 14:41:57 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LQ5R6-0005ik-Rg for emacs-devel@gnu.org; Thu, 22 Jan 2009 14:41:57 -0500 Original-Received: from [199.232.76.173] (port=54796 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LQ5R6-0005ic-JC for emacs-devel@gnu.org; Thu, 22 Jan 2009 14:41:56 -0500 Original-Received: from mail.g-wis.com ([204.250.154.18]:3845) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LQ5R6-0007FH-7G for emacs-devel@gnu.org; Thu, 22 Jan 2009 14:41:56 -0500 thread-index: Acl8yXsftLlqETebTuOy97/Y2ENxTw== X-Received-From-Address: 69.38.23.210 X-Envelope-From: monnier@iro.umontreal.ca X-Envelope-To: emacs-devel@gnu.org, adrian.b.robert@gmail.com, cyd@stupidchicken.com, mituharu@math.s.chiba-u.ac.jp, monnier@iro.umontreal.ca Original-Received: from ceviche.home ([69.38.23.210]) by mail.g-wis.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 22 Jan 2009 11:41:54 -0800 Original-Received: by ceviche.home (Postfix, from userid 20848) id 09888B400C; Thu, 22 Jan 2009 14:33:20 -0500 (EST) Content-Class: urn:content-classes:message Importance: normal Priority: normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.4325 In-Reply-To: (Adrian Robert'smessage of "Thu, 22 Jan 2009 16:23:40 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-OriginalArrivalTime: 22 Jan 2009 19:41:54.0568 (UTC) FILETIME=[7AB45880:01C97CC9] X-detected-operating-system: by monty-python.gnu.org: Windows 2000 SP4, XP SP1+ 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:108109 Archived-At: > 1) Complete removal of all Feval() calls in bad places as discussed earlier > on this list. A quick check reveals four places, relating to: emacs > termination, deadkey input handling, toolbar toggle, and preferences-help. > - Mostly straightforward (but taking some time) by using custom > nonascii-keystroke' events, Sound right. > except for the case of input-method handling when in isearch mode, > where passing such an event breaks out of the isearch entry; I could > use some help on this. Most likely those events should not be handled by the global-map, but instead either directly by the C code (e.g. in kbd_buffer_get_event), or via special-event-map, or via input-decode-map. Stefan