From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kenichi Handa Newsgroups: gmane.emacs.devel Subject: Re: Bootstrapping failure Date: Fri, 14 Oct 2005 10:11:22 +0900 Message-ID: References: <200510122054.j9CKsdh14908@raven.dms.auburn.edu> <874q7liipa.fsf@pacem.orebokech.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII X-Trace: sea.gmane.org 1129252440 11356 80.91.229.2 (14 Oct 2005 01:14:00 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 14 Oct 2005 01:14:00 +0000 (UTC) Cc: romain@orebokech.com, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Oct 14 03:13:52 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EQE6v-0006lQ-EF for ged-emacs-devel@m.gmane.org; Fri, 14 Oct 2005 03:11:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EQE6s-0006Lj-JC for ged-emacs-devel@m.gmane.org; Thu, 13 Oct 2005 21:11:46 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EQE6b-0006Ii-Ho for emacs-devel@gnu.org; Thu, 13 Oct 2005 21:11:29 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EQE6Z-0006G6-Op for emacs-devel@gnu.org; Thu, 13 Oct 2005 21:11:29 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EQE6Z-0006Fz-KC for emacs-devel@gnu.org; Thu, 13 Oct 2005 21:11:27 -0400 Original-Received: from [192.47.44.130] (helo=tsukuba.m17n.org) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1EQE6Z-00023v-7o for emacs-devel@gnu.org; Thu, 13 Oct 2005 21:11:27 -0400 Original-Received: from nfs.m17n.org (nfs.m17n.org [192.47.44.7]) by tsukuba.m17n.org (8.13.4/8.13.4/Debian-3) with ESMTP id j9E1BO8B001598; Fri, 14 Oct 2005 10:11:24 +0900 Original-Received: from etlken (etlken.m17n.org [192.47.44.125]) by nfs.m17n.org (8.13.4/8.13.4/Debian-3) with ESMTP id j9E1BNQZ028425; Fri, 14 Oct 2005 10:11:24 +0900 Original-Received: from handa by etlken with local (Exim 3.36 #1 (Debian)) id 1EQE6U-0000Ue-00; Fri, 14 Oct 2005 10:11:22 +0900 Original-To: Stefan Monnier In-reply-to: (message from Stefan Monnier on Thu, 13 Oct 2005 17:19:56 -0400) User-Agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/22.0.50 (i686-pc-linux-gnu) MULE/5.0 (SAKAKI) 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:44008 Archived-At: In article , Stefan Monnier writes: > In any case if the patch below is not acceptable, I guess I'll > replace the big backquote with the result of its evaluation. It seems that this (dirty) trick works. But, I'm not sure it's worth using such a trick. (eval-when-compile (defvar orig-max-lisp-eval-depth max-lisp-eval-depth) (setq max-lisp-eval-depth 3000)) (defvar mixal-operation-codes-alist ;; FIXME: the codes FADD, FSUB, FMUL, FDIV, JRAD, and FCMP were in ;; mixal-operation-codes but not here. They should probably be added here. ...) (eval-when-compile (setq max-lisp-eval-depth orig-max-lisp-eval-depth)) --- Kenichi Handa handa@m17n.org