(call_debugger): Don't bind inhibit-eval-during-redisplay.
authorGerd Moellmann <gerd@gnu.org>
Fri, 18 May 2001 11:15:46 +0000 (11:15 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 18 May 2001 11:15:46 +0000 (11:15 +0000)
src/eval.c

index 42dcc81..e000ea6 100644 (file)
@@ -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);