From: Stefan Monnier Date: Mon, 24 Mar 2025 21:31:35 +0000 (-0400) Subject: lisp/loadup.el (max-lisp-eval-depth): Bump up a bit X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c63e9d310abb39f627207c6aa3ca0bb6680c3881;p=emacs.git lisp/loadup.el (max-lisp-eval-depth): Bump up a bit This is to accommodate the deep backquoted thingy in `cus-start.el`. (cherry picked from commit cf6d0b48d83ce93e792ef60f6f55f61ebb6f30cf) --- diff --git a/lisp/loadup.el b/lisp/loadup.el index 3d571315672..a347c48a95e 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -103,7 +103,7 @@ ;; During bootstrapping the byte-compiler is run interpreted ;; when compiling itself, which uses a lot more stack ;; than usual. - (setq max-lisp-eval-depth (max max-lisp-eval-depth 3400)))) + (setq max-lisp-eval-depth (max max-lisp-eval-depth 4000)))) (message "Using load-path %s" load-path)