From 9db6f6b460c9c73f3563df3dc07462ee7dc4d8b1 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 18 May 2001 11:15:46 +0000 Subject: [PATCH] (call_debugger): Don't bind inhibit-eval-during-redisplay. --- src/eval.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/eval.c b/src/eval.c index 42dcc814bb6..e000ea622c5 100644 --- a/src/eval.c +++ b/src/eval.c @@ -255,7 +255,11 @@ call_debugger (arg) specbind (intern ("debugger-may-continue"), debug_while_redisplaying ? Qnil : Qt); specbind (Qinhibit_redisplay, Qnil); + +#if 0 /* Binding this prevents execution of Lisp code during + redisplay, which necessarily leads to display problems. */ specbind (Qinhibit_eval_during_redisplay, Qt); +#endif val = apply1 (Vdebugger, arg); -- 2.39.5