emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r108536: Fix "lisp nesting exceeds


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r108536: Fix "lisp nesting exceeds max-lisp-eval-depth" errors on MS-Windows.
Date: Fri, 02 Nov 2012 01:54:05 -0000
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108536
fixes bug: http://debbugs.gnu.org/11649
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Sat 2012-06-09 12:15:13 +0300
message:
  Fix "lisp nesting exceeds max-lisp-eval-depth" errors on MS-Windows.
  This happens during bootstrap; see bug#11649.
  
   lisp/makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200.
modified:
  lisp/ChangeLog
  lisp/makefile.w32-in
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-06-09 06:26:46 +0000
+++ b/lisp/ChangeLog    2012-06-09 09:15:13 +0000
@@ -1,3 +1,7 @@
+2012-06-09  Eli Zaretskii  <address@hidden>
+
+       * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200.  (Bug#11649)
+
 2012-06-09  Chong Yidong  <address@hidden>
 
        * face-remap.el (face-remap-add-relative, face-remap-set-base)

=== modified file 'lisp/makefile.w32-in'
--- a/lisp/makefile.w32-in      2012-05-21 20:40:55 +0000
+++ b/lisp/makefile.w32-in      2012-06-09 09:15:13 +0000
@@ -70,7 +70,7 @@
 # During bootstrapping the byte-compiler is run interpreted when compiling
 # itself, and uses more stack than usual.
 #
-BIG_STACK_DEPTH = 1200
+BIG_STACK_DEPTH = 2200
 BIG_STACK_OPTS = --eval "(setq max-lisp-eval-depth $(BIG_STACK_DEPTH))"
 
 BYTE_COMPILE_FLAGS = $(BIG_STACK_OPTS) $(BYTE_COMPILE_EXTRA_FLAGS)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]