# HG changeset patch # User Gerd Moellmann # Date 990184546 0 # Node ID d10de887e52e4dcab1df144b6b9535424477cdf8 # Parent d4b4c850abc0475cc011f38d57775f3672d1738c (call_debugger): Don't bind inhibit-eval-during-redisplay. diff -r d4b4c850abc0 -r d10de887e52e src/eval.c --- 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);