Mercurial > emacs
changeset 37043:451c5848dd13
(call_debugger): Bind `inhibit-redisplay' to nil, and
bind inhibit-eval-during-redisplay' to t.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 28 Mar 2001 15:33:13 +0000 |
parents | a644f4966169 |
children | f48e8fc252ee |
files | src/eval.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Wed Mar 28 15:32:52 2001 +0000 +++ b/src/eval.c Wed Mar 28 15:33:13 2001 +0000 @@ -254,6 +254,8 @@ 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);