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: [patch] enhanced mac drag-n-drop Date: Sun, 10 Apr 2005 21:56:39 -0400 Message-ID: References: <2dd8774c48ccbc9795d0d4ebe620f1e2@swipnet.se> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1113184845 21174 80.91.229.2 (11 Apr 2005 02:00:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 11 Apr 2005 02:00:45 +0000 (UTC) Cc: sorourke@cs.ucsd.edu, jan.h.d@swipnet.se, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Apr 11 04:00:44 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DKoE8-0003hy-GO for ged-emacs-devel@m.gmane.org; Mon, 11 Apr 2005 04:00:36 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DKno9-0005gR-Tt for ged-emacs-devel@m.gmane.org; Sun, 10 Apr 2005 21:33:45 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DKnm8-00043h-L3 for emacs-devel@gnu.org; Sun, 10 Apr 2005 21:31:40 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DKnm1-0003zQ-G1 for emacs-devel@gnu.org; Sun, 10 Apr 2005 21:31:35 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DKnlz-0003xu-Qz for emacs-devel@gnu.org; Sun, 10 Apr 2005 21:31:32 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DKoCR-00062S-Ex for emacs-devel@gnu.org; Sun, 10 Apr 2005 21:58:51 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1DKoAJ-0000ps-Lf; Sun, 10 Apr 2005 21:56:39 -0400 Original-To: YAMAMOTO Mitsuharu In-reply-to: (message from YAMAMOTO Mitsuharu on Sun, 10 Apr 2005 11:03:43 +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:35848 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:35848 Thanks. I've just encountered a situation that I'd like to use code conversion, which may call Feval, inside XTread_socket. XTread_socket runs in a signal handler. I don't think Emacs can recover from a Lisp error occurrinmg in the signal handler. I think there are many other potential causes of bugs if eval were run from the signal handler. Someone wrote code to move most of the real work of XTread_socket outside the signal handler. ISTR we did not install it because there were some cases in which that would change the behavior for the worse. But we didn't reach any final conclusion about it.