* * debug.h: Changed semantics of debug option "backtrace". This
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Sat, 2 Nov 1996 20:53:24 +0000 (20:53 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Sat, 2 Nov 1996 20:53:24 +0000 (20:53 +0000)
option now only indicates whether we want automatic backtrace at
an error.

libguile/debug.h

index fe9c56f..99d526e 100644 (file)
@@ -103,7 +103,7 @@ extern int scm_check_entry_p, scm_check_apply_p, scm_check_exit_p;
   if (SCM_ENTER_FRAME_P || SCM_BREAKPOINTS_P) CHECK_ENTRY = 1;\
   if (SCM_APPLY_FRAME_P || SCM_TRACE_P) CHECK_APPLY = 1;\
   if (SCM_EXIT_FRAME_P || SCM_TRACE_P) CHECK_EXIT = 1;\
-  scm_debug_mode = SCM_DEVAL_P || SCM_BACKTRACE_P || CHECK_ENTRY || CHECK_APPLY || CHECK_EXIT;\
+  scm_debug_mode = SCM_DEVAL_P || CHECK_ENTRY || CHECK_APPLY || CHECK_EXIT;\
   scm_ceval_ptr = scm_debug_mode ? scm_deval : scm_ceval;\
 }