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:
Henrik Lissner
2018-09-07 21:58:38 -04:00
parent 4d10c28c37
commit f07ae6a02b

View File

@ -259,7 +259,10 @@ and `doom-exit-window-hook'."
tramp-persistency-file-name (concat doom-cache-dir "tramp-persistency.el") tramp-persistency-file-name (concat doom-cache-dir "tramp-persistency.el")
url-cache-directory (concat doom-cache-dir "url/") url-cache-directory (concat doom-cache-dir "url/")
url-configuration-directory (concat doom-etc-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 '() (defvar doom-auto-minor-mode-alist '()
"Alist mapping filename patterns to corresponding minor mode functions, like "Alist mapping filename patterns to corresponding minor mode functions, like