changeset 37799:d10de887e52e

(call_debugger): Don't bind inhibit-eval-during-redisplay.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 18 May 2001 11:15:46 +0000
parents d4b4c850abc0
children 9cddd888d25f
files src/eval.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/eval.c	Fri May 18 11:06:40 2001 +0000
+++ b/src/eval.c	Fri May 18 11:15:46 2001 +0000
@@ -255,7 +255,11 @@
   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);