Mercurial > emacs
changeset 55721:b0b446f1087b
(struct backtrace): Add debug_on_exit member.
(Fcommand_execute): Clear it.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Fri, 21 May 2004 23:36:38 +0000 |
parents | 1a56baecf37d |
children | 623ab06bb37b |
files | src/keyboard.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Fri May 21 23:36:10 2004 +0000 +++ b/src/keyboard.c Fri May 21 23:36:38 2004 +0000 @@ -117,6 +117,8 @@ args points to slot holding list of unevalled args */ char evalargs; + /* Nonzero means call value of debugger when done with this operation. */ + char debug_on_exit; }; #ifdef MULTI_KBOARD @@ -9675,6 +9677,7 @@ backtrace.args = &cmd; backtrace.nargs = 1; backtrace.evalargs = 0; + backtrace.debug_on_exit = 0; tem = Fcall_interactively (cmd, record_flag, keys);