From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Core dumps in redisplay. Date: Sun, 27 Feb 2005 08:43:07 -0500 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1109511714 32217 80.91.229.2 (27 Feb 2005 13:41:54 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 27 Feb 2005 13:41:54 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Feb 27 14:41:53 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1D5OfX-0006af-Rq for ged-emacs-devel@m.gmane.org; Sun, 27 Feb 2005 14:41:12 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D5Oxh-00082I-VS for ged-emacs-devel@m.gmane.org; Sun, 27 Feb 2005 08:59:58 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1D5Ows-0007mM-3z for emacs-devel@gnu.org; Sun, 27 Feb 2005 08:59:06 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1D5Owq-0007ll-RF for emacs-devel@gnu.org; Sun, 27 Feb 2005 08:59:05 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D5Owq-0007li-O2 for emacs-devel@gnu.org; Sun, 27 Feb 2005 08:59:04 -0500 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1D5OhP-0002Hd-Di for emacs-devel@gnu.org; Sun, 27 Feb 2005 08:43:07 -0500 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1D5OhP-0003rG-09; Sun, 27 Feb 2005 08:43:07 -0500 Original-To: David Kastrup In-reply-to: (message from David Kastrup on Sat, 26 Feb 2005 14:40:32 +0100) 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 X-MailScanner-To: ged-emacs-devel@m.gmane.org Xref: main.gmane.org gmane.emacs.devel:33867 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:33867 /* Unblock input if we enter with input blocked. This may happen if redisplay traps e.g. during tool-bar update with input blocked. */ while (INPUT_BLOCKED_P) UNBLOCK_INPUT; return Fthrow (Qtop_level, Qnil); } This approach of unblocking input appears completely useless to me, since unwinding the stack includes restoration of interrupt_input_blocked. Probably that code was needed in the past, before unwind_to_catch did this. I will try deleting it.