mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
max-specpdl-size = 5000, max-lisp-eval-depth = 2500
The defaults were designed for much, much older systems. We can safely increase this to stave off premature abortion of intentional deeply nested loops or excessive allocations.
This commit is contained in:
@ -259,7 +259,10 @@ and `doom-exit-window-hook'."
|
||||
tramp-persistency-file-name (concat doom-cache-dir "tramp-persistency.el")
|
||||
url-cache-directory (concat doom-cache-dir "url/")
|
||||
url-configuration-directory (concat doom-etc-dir "url/")
|
||||
gamegrid-user-score-file-directory (concat doom-etc-dir "games/"))
|
||||
gamegrid-user-score-file-directory (concat doom-etc-dir "games/")
|
||||
;; The defaults for these are conservative, we can increase them
|
||||
max-specpdl-size 5000
|
||||
max-lisp-eval-depth 2500)
|
||||
|
||||
(defvar doom-auto-minor-mode-alist '()
|
||||
"Alist mapping filename patterns to corresponding minor mode functions, like
|
||||
|
Reference in New Issue
Block a user