From c63e9d310abb39f627207c6aa3ca0bb6680c3881 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 24 Mar 2025 17:31:35 -0400 Subject: [PATCH] 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) --- lisp/loadup.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5