From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lute Kamstra Newsgroups: gmane.emacs.devel Subject: Re: Bootstrapping apparently fails to compile Lisp files. Date: Mon, 07 Mar 2005 02:38:58 +0100 Message-ID: <87k6okxmj1.fsf@xs4all.nl> References: <200503062350.j26Noj018804@raven.dms.auburn.edu> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1110159371 6924 80.91.229.2 (7 Mar 2005 01:36:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 7 Mar 2005 01:36:11 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Mar 07 02:36:11 2005 Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1D879T-0000ja-Tx for ged-emacs-devel@m.gmane.org; Mon, 07 Mar 2005 02:35:20 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D87T9-0005eb-Ng for ged-emacs-devel@m.gmane.org; Sun, 06 Mar 2005 20:55:39 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1D87Sj-0005Yt-S7 for emacs-devel@gnu.org; Sun, 06 Mar 2005 20:55:14 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1D87Sh-0005Xn-WD for emacs-devel@gnu.org; Sun, 06 Mar 2005 20:55:13 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D87Sh-0005Xg-SM for emacs-devel@gnu.org; Sun, 06 Mar 2005 20:55:11 -0500 Original-Received: from [194.109.24.22] (helo=smtp-vbr2.xs4all.nl) by monty-python.gnu.org with esmtp (Exim 4.34) id 1D87D8-0004YG-1l for emacs-devel@gnu.org; Sun, 06 Mar 2005 20:39:06 -0500 Original-Received: from pijl (a80-127-67-124.adsl.xs4all.nl [80.127.67.124]) by smtp-vbr2.xs4all.nl (8.12.11/8.12.11) with ESMTP id j271cwYs079295; Mon, 7 Mar 2005 02:38:59 +0100 (CET) (envelope-from Lute.Kamstra@xs4all.nl) Original-Received: from lute by pijl with local (Exim 3.36 #1 (Debian)) id 1D87D0-0003jX-00; Mon, 07 Mar 2005 02:38:58 +0100 Original-To: Luc Teirlinck In-Reply-To: <200503062350.j26Noj018804@raven.dms.auburn.edu> (Luc Teirlinck's message of "Sun, 6 Mar 2005 17:50:45 -0600 (CST)") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) Original-Lines: 28 X-Virus-Scanned: by XS4ALL Virus Scanner 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: news.gmane.org gmane.emacs.devel:34261 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:34261 Luc Teirlinck writes: [...] > Your tree does not include the compiled Lisp files. [...] > Bootstrapping _claims_ it has compiled a huge number Lisp files, but it > did not compile one single one. The problem was introduced by this change: 2005-03-06 Richard M. Stallman * keyboard.c (Ftop_level): Let Fthrow deal with UNBLOCK_INPUT. * eval.c (unwind_to_catch): Use UNBLOCK_INPUT_TO. (Feval, Ffuncall): Use CHECK_CONS_LIST. * lisp.h (CHECK_CONS_LIST): New macro (two definitions). * blockinput.h (UNBLOCK_INPUT_TO): New macro. (TOTALLY_UNBLOCK_INPUT): Handle a pending signal if any. Specifically, by the use of UNBLOCK_INPUT_TO in eval.c. Lute.