/* -*-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
\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)
SP_List = One_Before.next;
return;
}
+
+#else
+/* Not ENABLE_DEBUGGING_FLAGS */
+#endif
/* -*-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
Disabled when not debugging the interpreter.
It "shadows" definitions in default.h */
-#ifdef ENABLE_DEBUGGING_TOOLS
+#ifdef ENABLE_DEBUGGING_FLAGS
struct sp_record
{
#define Apply_Ucode_Hook()
-#endif /* ENABLE_DEBUGGING_TOOLS */
+#endif /* ENABLE_DEBUGGING_FLAGS */