From: Mattias EngdegÄrd Date: Wed, 1 Jan 2020 16:35:01 +0000 (+0100) Subject: * lisp/loadup.el: Set max-specpdl-size to 1800 when loading cl-generic.el. X-Git-Tag: emacs-27.0.90~226 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=43203d5068;p=emacs.git * lisp/loadup.el: Set max-specpdl-size to 1800 when loading cl-generic.el. --- diff --git a/lisp/loadup.el b/lisp/loadup.el index 04ec5ca4754..97525b27086 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -245,7 +245,9 @@ (load "language/cham") (load "indent") -(load "emacs-lisp/cl-generic") +(let ((max-specpdl-size (max max-specpdl-size 1800))) + ;; A particularly demanding file to load; 1600 does not seem to be enough. + (load "emacs-lisp/cl-generic")) (load "minibuffer") ;Needs cl-generic (and define-minor-mode). (load "frame") (load "startup")