aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorGerd Moellmann2001-05-18 11:15:46 +0000
committerGerd Moellmann2001-05-18 11:15:46 +0000
commit9db6f6b460c9c73f3563df3dc07462ee7dc4d8b1 (patch)
treee291080f6b3d89b6c473b0f503c327e5d786b472 /src/eval.c
parent7eb4b061036141a3470a473852d4e5ff12a04054 (diff)
downloademacs-9db6f6b460c9c73f3563df3dc07462ee7dc4d8b1.tar.gz
emacs-9db6f6b460c9c73f3563df3dc07462ee7dc4d8b1.zip
(call_debugger): Don't bind inhibit-eval-during-redisplay.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c4
1 files changed, 4 insertions, 0 deletions
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)
255 specbind (intern ("debugger-may-continue"), 255 specbind (intern ("debugger-may-continue"),
256 debug_while_redisplaying ? Qnil : Qt); 256 debug_while_redisplaying ? Qnil : Qt);
257 specbind (Qinhibit_redisplay, Qnil); 257 specbind (Qinhibit_redisplay, Qnil);
258
259#if 0 /* Binding this prevents execution of Lisp code during
260 redisplay, which necessarily leads to display problems. */
258 specbind (Qinhibit_eval_during_redisplay, Qt); 261 specbind (Qinhibit_eval_during_redisplay, Qt);
262#endif
259 263
260 val = apply1 (Vdebugger, arg); 264 val = apply1 (Vdebugger, arg);
261 265