Prunning a fossil that had a typo and was causing some C compilers to
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 27 Aug 1991 19:36:35 +0000 (19:36 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 27 Aug 1991 19:36:35 +0000 (19:36 +0000)
barf.

v7/src/microcode/psbtobin.c
v8/src/microcode/psbtobin.c

index 4b13097a8df09833923deba9d9e43410b7758ed0..c47ae3322db60c91c3fedf77564fbea507498854 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/psbtobin.c,v 9.44 1991/07/03 01:32:34 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/psbtobin.c,v 9.45 1991/08/27 19:36:35 jinx Exp $
 
 Copyright (c) 1987-91 Massachusetts Institute of Technology
 
@@ -609,6 +609,10 @@ DEFUN (Move_Memory, (From, N, To),
 
 #endif
 
+#if false
+
+/* This appears to be a fossil. */
+
 void
 DEFUN (Relocate_Objects, (from, how_many, disp),
        fast SCHEME_OBJECT *from AND
@@ -630,7 +634,7 @@ DEFUN (Relocate_Objects, (from, how_many, disp),
       case TC_BIG_FIXNUM:
       case TC_BIG_FLONUM:
       case TC_CHARACTER_STRING:
-       *from++ ==
+       *from++ =
          (OBJECT_NEW_DATUM ((*from), (disp + (OBJECT_DATUM (*from)))));
        break;
 
@@ -644,6 +648,8 @@ DEFUN (Relocate_Objects, (from, how_many, disp),
   }
   return;
 }
+
+#endif
 \f
 #define Relocate_Into(Where, Addr)                                     \
 {                                                                      \
index 008ab46394476de0a6d80e617db20b9ffb08d2f9..88801fe15861d632f47d8259061e2a7b492512dd 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/psbtobin.c,v 9.44 1991/07/03 01:32:34 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/psbtobin.c,v 9.45 1991/08/27 19:36:35 jinx Exp $
 
 Copyright (c) 1987-91 Massachusetts Institute of Technology
 
@@ -609,6 +609,10 @@ DEFUN (Move_Memory, (From, N, To),
 
 #endif
 
+#if false
+
+/* This appears to be a fossil. */
+
 void
 DEFUN (Relocate_Objects, (from, how_many, disp),
        fast SCHEME_OBJECT *from AND
@@ -630,7 +634,7 @@ DEFUN (Relocate_Objects, (from, how_many, disp),
       case TC_BIG_FIXNUM:
       case TC_BIG_FLONUM:
       case TC_CHARACTER_STRING:
-       *from++ ==
+       *from++ =
          (OBJECT_NEW_DATUM ((*from), (disp + (OBJECT_DATUM (*from)))));
        break;
 
@@ -644,6 +648,8 @@ DEFUN (Relocate_Objects, (from, how_many, disp),
   }
   return;
 }
+
+#endif
 \f
 #define Relocate_Into(Where, Addr)                                     \
 {                                                                      \