]> git.eshelyaron.com Git - emacs.git/commitdiff
(call_debugger): Bind `inhibit-redisplay' to nil, and
authorGerd Moellmann <gerd@gnu.org>
Wed, 28 Mar 2001 15:33:13 +0000 (15:33 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 28 Mar 2001 15:33:13 +0000 (15:33 +0000)
bind inhibit-eval-during-redisplay' to t.

src/eval.c

index 439d7c5ccc2422268f87140ded8c96d1e309349e..f7dd17eb5eae9cfcd40377c5c87f43e346587ff7 100644 (file)
@@ -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);