aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2025-03-24 17:31:35 -0400
committerStefan Monnier2025-03-24 17:31:35 -0400
commitcf6d0b48d83ce93e792ef60f6f55f61ebb6f30cf (patch)
treecc788c9f0b6a4cd69047c905d33f14591743b8d8
parentf66c92a793557f6ac14f6dd07ad97f3a6057b3c9 (diff)
downloademacs-cf6d0b48d83ce93e792ef60f6f55f61ebb6f30cf.tar.gz
emacs-cf6d0b48d83ce93e792ef60f6f55f61ebb6f30cf.zip
lisp/loadup.el (max-lisp-eval-depth): Bump up a bit
This is to accommodate the deep backquoted thingy in `cus-start.el`.
-rw-r--r--lisp/loadup.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el
index 3e87f4811df..6748c0a0750 100644
--- a/lisp/loadup.el
+++ b/lisp/loadup.el
@@ -103,7 +103,7 @@
103 ;; During bootstrapping the byte-compiler is run interpreted 103 ;; During bootstrapping the byte-compiler is run interpreted
104 ;; when compiling itself, which uses a lot more stack 104 ;; when compiling itself, which uses a lot more stack
105 ;; than usual. 105 ;; than usual.
106 (setq max-lisp-eval-depth (max max-lisp-eval-depth 3400)))) 106 (setq max-lisp-eval-depth (max max-lisp-eval-depth 4000))))
107 107
108(message "Using load-path %s" load-path) 108(message "Using load-path %s" load-path)
109 109