From: Jim Miller <edu/mit/csail/zurich/jmiller> Date: Wed, 3 Nov 1993 19:22:03 +0000 (+0000) Subject: Fixes to allow ENABLE_DEBUGGING_FLAGS to work X-Git-Tag: 20090517-FFI~7613 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=7a1ef11cd59829914dc8f6f24ce1d5cfe3b885c8;p=mit-scheme.git Fixes to allow ENABLE_DEBUGGING_FLAGS to work --- diff --git a/v7/src/microcode/storage.c b/v7/src/microcode/storage.c index 4e9007a20..c80f334f9 100644 --- a/v7/src/microcode/storage.c +++ b/v7/src/microcode/storage.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: storage.c,v 9.54 1993/10/14 21:44:20 gjr Exp $ +$Id: storage.c,v 9.55 1993/11/03 19:22:03 jmiller Exp $ Copyright (c) 1987-1993 Massachusetts Institute of Technology @@ -93,7 +93,7 @@ SCHEME_OBJECT * memory_base; /* DEBUGGING SWITCHES */ /**********************/ -#ifdef ENABLE_DEBUGGING_TOOLS +#ifdef ENABLE_DEBUGGING_FLAGS Boolean Eval_Debug = false; Boolean Hex_Input_Debug = false; @@ -109,7 +109,7 @@ Boolean Upgrade_Debug = false; Boolean Dump_Debug = false; Boolean Trace_On_Error = false; Boolean Bignum_Debug = false; -Boolean Per_File = true; +Boolean Per_File = false; Boolean Fluids_Debug = false; More_Debug_Flag_Allocs(); @@ -125,7 +125,7 @@ int local_circle[debug_maxslots]; int debug_circle[100]; int local_circle[100]; -#endif /* ENABLE_DEBUGGING_TOOLS */ +#endif /* ENABLE_DEBUGGING_FLAGS */ /****************************/ /* Debugging Macro Messages */