From: Gerd Moellmann Date: Fri, 18 May 2001 11:15:46 +0000 (+0000) Subject: (call_debugger): Don't bind inhibit-eval-during-redisplay. X-Git-Tag: emacs-pretest-21.0.104~451 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9db6f6b460c9c73f3563df3dc07462ee7dc4d8b1;p=emacs.git (call_debugger): Don't bind inhibit-eval-during-redisplay. --- 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);