diff options
| author | Mattias EngdegÄrd | 2020-01-01 17:22:35 +0100 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2020-01-01 17:38:41 +0100 |
| commit | fab3674b363143299b6bdfae1f6f1e6f6ee1daa6 (patch) | |
| tree | 27a1ea8365d7ba92f9e80658c542595bf77a2c0f | |
| parent | 42f66aa5028b543085a77b7a1ded5132444442b2 (diff) | |
| download | emacs-fab3674b363143299b6bdfae1f6f1e6f6ee1daa6.tar.gz emacs-fab3674b363143299b6bdfae1f6f1e6f6ee1daa6.zip | |
Revert "Raise default max-specpdl-size value"
This reverts commit bb9402e6e9c12938aee31b81e25511eb1f6335d2.
| -rw-r--r-- | doc/lispref/variables.texi | 2 | ||||
| -rw-r--r-- | src/eval.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi index 568eb0f7836..1ec97e2f3de 100644 --- a/doc/lispref/variables.texi +++ b/doc/lispref/variables.texi | |||
| @@ -322,7 +322,7 @@ that Lisp avoids infinite recursion on an ill-defined function. | |||
| 322 | @code{max-lisp-eval-depth} provides another limit on depth of nesting. | 322 | @code{max-lisp-eval-depth} provides another limit on depth of nesting. |
| 323 | @xref{Definition of max-lisp-eval-depth,, Eval}. | 323 | @xref{Definition of max-lisp-eval-depth,, Eval}. |
| 324 | 324 | ||
| 325 | The default value is 1800. Entry to the Lisp debugger increases the | 325 | The default value is 1600. Entry to the Lisp debugger increases the |
| 326 | value, if there is little room left, to make sure the debugger itself | 326 | value, if there is little room left, to make sure the debugger itself |
| 327 | has room to execute. | 327 | has room to execute. |
| 328 | @end defopt | 328 | @end defopt |
diff --git a/src/eval.c b/src/eval.c index d1f74751446..4559a0e1f66 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -219,7 +219,7 @@ void | |||
| 219 | init_eval_once (void) | 219 | init_eval_once (void) |
| 220 | { | 220 | { |
| 221 | /* Don't forget to update docs (lispref node "Local Variables"). */ | 221 | /* Don't forget to update docs (lispref node "Local Variables"). */ |
| 222 | max_specpdl_size = 1800; /* 1600 is not enough for cl-generic.el. */ | 222 | max_specpdl_size = 1600; /* 1500 is not enough for cl-generic.el. */ |
| 223 | max_lisp_eval_depth = 800; | 223 | max_lisp_eval_depth = 800; |
| 224 | Vrun_hooks = Qnil; | 224 | Vrun_hooks = Qnil; |
| 225 | pdumper_do_now_and_after_load (init_eval_once_for_pdumper); | 225 | pdumper_do_now_and_after_load (init_eval_once_for_pdumper); |