Reversed the conditionalization so that we can support
authorJim Miller <edu/mit/csail/zurich/jmiller>
Wed, 3 Nov 1993 18:50:24 +0000 (18:50 +0000)
committerJim Miller <edu/mit/csail/zurich/jmiller>
Wed, 3 Nov 1993 18:50:24 +0000 (18:50 +0000)
ENABLE_DEUBGGING_FLAGS again.

v7/src/microcode/bkpt.c
v7/src/microcode/bkpt.h

index 054af450865a35390f75473f58962d30b2706b49..5848007a0363727051e054e03d0182707e9c260e 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: bkpt.c,v 9.28 1993/06/24 07:07:04 gjr Exp $
+$Id: bkpt.c,v 9.29 1993/11/03 18:49:17 jmiller Exp $
 
 Copyright (c) 1987-92 Massachusetts Institute of Technology
 
@@ -37,9 +37,7 @@ MIT in each case. */
 \f
 #include "scheme.h"
 
-#ifndef ENABLE_DEBUGGING_TOOLS
-#include "Error: Not debugging but bkpt.c included"
-#endif
+#ifdef ENABLE_DEBUGGING_FLAGS
 
 #define sp_nil ((struct sp_record *) 0)
 
@@ -108,3 +106,7 @@ DEFUN_VOID (Pop_Return_Break_Point)
   SP_List = One_Before.next;
   return;
 }
+
+#else
+/* Not ENABLE_DEBUGGING_FLAGS */
+#endif
index 89b04f2a25ae8f5b53196265edc480f6a845b6b3..3dbf0d645d500085408132326627b1ea9f264d43 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: bkpt.h,v 9.29 1993/06/24 07:07:06 gjr Exp $
+$Id: bkpt.h,v 9.30 1993/11/03 18:50:24 jmiller Exp $
 
 Copyright (c) 1987, 1988, 1989, 1990 Massachusetts Institute of Technology
 
@@ -36,7 +36,7 @@ MIT in each case. */
    Disabled when not debugging the interpreter.
    It "shadows" definitions in default.h */
 
-#ifdef ENABLE_DEBUGGING_TOOLS
+#ifdef ENABLE_DEBUGGING_FLAGS
 
 struct sp_record
 {
@@ -71,4 +71,4 @@ typedef struct sp_record * sp_record_list;
 
 #define Apply_Ucode_Hook()
 
-#endif /* ENABLE_DEBUGGING_TOOLS */
+#endif /* ENABLE_DEBUGGING_FLAGS */