]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct backtrace): Add debug_on_exit member.
authorKim F. Storm <storm@cua.dk>
Fri, 21 May 2004 23:36:38 +0000 (23:36 +0000)
committerKim F. Storm <storm@cua.dk>
Fri, 21 May 2004 23:36:38 +0000 (23:36 +0000)
(Fcommand_execute): Clear it.

src/keyboard.c

index 0102c5cd4383bf6106c9fa72145b9ddd53217367..ffa047b27d2c31d11cfb14687c6f33b4eb16fa5e 100644 (file)
@@ -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);