diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-05-18 11:15:46 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-05-18 11:15:46 +0000 |
commit | 9db6f6b460c9c73f3563df3dc07462ee7dc4d8b1 (patch) | |
tree | e291080f6b3d89b6c473b0f503c327e5d786b472 /src | |
parent | 7eb4b061036141a3470a473852d4e5ff12a04054 (diff) | |
download | emacs-9db6f6b460c9c73f3563df3dc07462ee7dc4d8b1.tar.gz |
(call_debugger): Don't bind inhibit-eval-during-redisplay.
Diffstat (limited to 'src')
-rw-r--r-- | src/eval.c | 4 |
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) 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); |