diff src/keyboard.c @ 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 4771569ccabb
children 7e63582e48f6 50b9a96c837c
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);