Forgot back-slashes in a C preprocessor macro.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 17 Nov 1987 19:47:34 +0000 (19:47 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Tue, 17 Nov 1987 19:47:34 +0000 (19:47 +0000)
v7/src/microcode/bchdmp.c

index 6219af3caf075cce9ea1833cde261d337c8ba17a..1b61af140323087707cbacf9608f0f68eec33553 100644 (file)
@@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising,
 promotional, or sales literature without prior written consent from
 MIT in each case. */
 
-/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/bchdmp.c,v 9.35 1987/11/17 08:06:17 jinx Exp $ */
+/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/bchdmp.c,v 9.36 1987/11/17 19:47:34 jinx Exp $ */
 
 /* bchgcl, bchmmg, bchpur, and bchdmp can replace gcloop, memmag,
    purify, and fasdump, respectively, to provide garbage collection
@@ -105,12 +105,14 @@ static fixup_count = 0;
   fasdump_normal_end();                                                        \
 }
 
-#define fasdump_remember_to_fix(location, contents)
-{
-  if ((fixup == fixup_buffer) && (!reset_fixes()))
-    return false;
-  *--fixup = contents;
-  *--fixup = ((Pointer) location);
+#define fasdump_remember_to_fix(location, contents)                    \
+{                                                                      \
+  if ((fixup == fixup_buffer) && (!reset_fixes()))                     \
+  {                                                                    \
+    return false;                                                      \
+  }                                                                    \
+  *--fixup = contents;                                                 \
+  *--fixup = ((Pointer) location);                                     \
 }
 \f
 Boolean