Mercurial > emacs
diff src/eval.c @ 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 | f98176963881 |
| children | 841de8d087fa 93bcc7200a67 |
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);
