From 8efb6cc7ad3e0d0e3a84c206948d47123890a301 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Wed, 28 Mar 2001 15:33:13 +0000 Subject: [PATCH] (call_debugger): Bind `inhibit-redisplay' to nil, and bind inhibit-eval-during-redisplay' to t. --- src/eval.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/eval.c b/src/eval.c index 439d7c5ccc2..f7dd17eb5ea 100644 --- a/src/eval.c +++ b/src/eval.c @@ -254,6 +254,8 @@ call_debugger (arg) redisplaying_p = 0; specbind (intern ("debugger-may-continue"), debug_while_redisplaying ? Qnil : Qt); + specbind (Qinhibit_redisplay, Qnil); + specbind (Qinhibit_eval_during_redisplay, Qt); val = apply1 (Vdebugger, arg); -- 2.39.5