]> git.eshelyaron.com Git - emacs.git/commitdiff
Increase max-lisp-eval-depth adjustment while in debugger (bug#31919)
authorGemini Lasswell <gazally@runbox.com>
Wed, 20 Jun 2018 20:58:33 +0000 (13:58 -0700)
committerGemini Lasswell <gazally@runbox.com>
Sat, 30 Jun 2018 14:36:11 +0000 (07:36 -0700)
* src/eval.c (call_debugger): Increase the amount of extra Lisp
evaluation depth given to the debugger to allow it to call cl-print.
* lisp/emacs-lisp/debug.el (debugger-setup-buffer): Add a comment
to suggest updating call_debugger when changing print-level.

lisp/emacs-lisp/debug.el
src/eval.c

index 593fab97275845e66c3063136881f3fe93b29e8e..821d67488213f284b2a6a877c00efeea77dd54a9 100644 (file)
@@ -322,6 +322,7 @@ That buffer should be current already."
                  (backtrace-frames 'debug)))
         (print-escape-newlines t)
         (print-escape-control-characters t)
+        ;; If you increase print-level, add more depth in call_debugger.
         (print-level 8)
         (print-length 50)
         (pos (point)))
index ca1eb84ff3faa87e18889c676c3516341ef5d67a..40cba3bb1ceaa627067acbdc5c23e79ae16d0ea5 100644 (file)
@@ -282,8 +282,12 @@ call_debugger (Lisp_Object arg)
   /* Do not allow max_specpdl_size less than actual depth (Bug#16603).  */
   EMACS_INT old_max = max (max_specpdl_size, count);
 
-  if (lisp_eval_depth + 40 > max_lisp_eval_depth)
-    max_lisp_eval_depth = lisp_eval_depth + 40;
+  /* The previous value of 40 is too small now that the debugger
+     prints using cl-prin1 instead of prin1.  Printing lists nested 8
+     deep (which is the value of print-level used in the debugger)
+     currently requires 77 additional frames.  See bug#31919.  */
+  if (lisp_eval_depth + 100 > max_lisp_eval_depth)
+    max_lisp_eval_depth = lisp_eval_depth + 100;
 
   /* While debugging Bug#16603, previous value of 100 was found
      too small to avoid specpdl overflow in the debugger itself.  */