From 080e18b104328c5f66b87429562f093029084f1e Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Fri, 21 May 2004 23:36:38 +0000 Subject: [PATCH] (struct backtrace): Add debug_on_exit member. (Fcommand_execute): Clear it. --- src/keyboard.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/keyboard.c b/src/keyboard.c index 0102c5cd438..ffa047b27d2 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -117,6 +117,8 @@ struct backtrace 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 @@ a special event, so ignore the prefix argument and don't clear it. */) backtrace.args = &cmd; backtrace.nargs = 1; backtrace.evalargs = 0; + backtrace.debug_on_exit = 0; tem = Fcall_interactively (cmd, record_flag, keys); -- 2.39.5