Move only reference to COMPILE_STEPPER from "scheme.h" to "interp.c",
authorChris Hanson <org/chris-hanson/cph>
Wed, 12 Feb 1997 08:23:35 +0000 (08:23 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 12 Feb 1997 08:23:35 +0000 (08:23 +0000)
since that is the only file affected.  Also, the previous location of
this reference prevented the assignment in "config.h" from being
properly seen.

v7/src/microcode/interp.c
v7/src/microcode/scheme.h
v8/src/microcode/interp.c

index a33a4fdf49fff1f320332da76d960a2f0a87faaa..52df6c1b37658627ca5e880d485fcf578f8624d7 100644 (file)
@@ -1,8 +1,8 @@
 /* -*-C-*-
 
-$Id: interp.c,v 9.86 1996/10/02 19:01:28 cph Exp $
+$Id: interp.c,v 9.87 1997/02/12 08:23:35 cph Exp $
 
-Copyright (c) 1988-96 Massachusetts Institute of Technology
+Copyright (c) 1988-97 Massachusetts Institute of Technology
 
 This material was developed by the Scheme project at the Massachusetts
 Institute of Technology, Department of Electrical Engineering and
@@ -50,6 +50,12 @@ extern void EXFUN (free, (PTR ptr));
 #define obstack_chunk_free free
 extern void EXFUN (back_out_of_primitive_internal, (void));
 extern void EXFUN (preserve_signal_mask, (void));
+
+#ifdef COMPILE_STEPPER
+#define Microcode_Does_Stepping        true
+#else
+#define Microcode_Does_Stepping        false
+#endif
 \f
 /* In order to make the interpreter tail recursive (i.e.
  * to avoid calling procedures and thus saving unnecessary
index ad66ea3ef96f0008b04e77001930dd9bd97354de..9681498136d562e5706c07155c42e32e6a40bab2 100644 (file)
@@ -1,8 +1,8 @@
 /* -*-C-*-
 
-$Id: scheme.h,v 9.36 1993/08/30 16:11:01 gjr Exp $
+$Id: scheme.h,v 9.37 1997/02/12 08:21:30 cph Exp $
 
-Copyright (c) 1987-1993 Massachusetts Institute of Technology
+Copyright (c) 1987-97 Massachusetts Institute of Technology
 
 This material was developed by the Scheme project at the Massachusetts
 Institute of Technology, Department of Electrical Engineering and
@@ -57,12 +57,6 @@ MIT in each case. */
 #endif
 #endif
 
-#ifdef COMPILE_STEPPER
-#define Microcode_Does_Stepping        true
-#else
-#define Microcode_Does_Stepping        false
-#endif
-
 #define forward                extern  /* For forward references */
 
 #include <stdio.h>
index f72d88057f26a77e289935fb3d69a23323059790..be5a6bde271f300d02c11e969f34ff83b596dc39 100644 (file)
@@ -1,8 +1,8 @@
 /* -*-C-*-
 
-$Id: interp.c,v 9.88 1996/10/02 18:57:49 cph Exp $
+$Id: interp.c,v 9.89 1997/02/12 08:21:39 cph Exp $
 
-Copyright (c) 1988-96 Massachusetts Institute of Technology
+Copyright (c) 1988-97 Massachusetts Institute of Technology
 
 This material was developed by the Scheme project at the Massachusetts
 Institute of Technology, Department of Electrical Engineering and
@@ -50,6 +50,12 @@ extern void EXFUN (free, (PTR ptr));
 #define obstack_chunk_free free
 extern void EXFUN (back_out_of_primitive_internal, (void));
 extern void EXFUN (preserve_signal_mask, (void));
+
+#ifdef COMPILE_STEPPER
+#define Microcode_Does_Stepping        true
+#else
+#define Microcode_Does_Stepping        false
+#endif
 \f
 /* In order to make the interpreter tail recursive (i.e.
  * to avoid calling procedures and thus saving unnecessary