From: Gerd Moellmann Date: Wed, 28 Mar 2001 15:33:13 +0000 (+0000) Subject: (call_debugger): Bind `inhibit-redisplay' to nil, and X-Git-Tag: emacs-pretest-21.0.101~129 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8efb6cc7ad3e0d0e3a84c206948d47123890a301;p=emacs.git (call_debugger): Bind `inhibit-redisplay' to nil, and bind inhibit-eval-during-redisplay' to t. --- diff --git a/src/eval.c b/src/eval.c index 439d7c5ccc2..f7dd17eb5ea 100644 --- a/src/eval.c +++ b/src/eval.c @@ -254,6 +254,8 @@ call_debugger (arg) redisplaying_p = 0; specbind (intern ("debugger-may-continue"), debug_while_redisplaying ? Qnil : Qt); + specbind (Qinhibit_redisplay, Qnil); + specbind (Qinhibit_eval_during_redisplay, Qt); val = apply1 (Vdebugger, arg);