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:
parent
4d10c28c37
commit
f07ae6a02b
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue