From: Guillermo J. Rozas Date: Tue, 17 Nov 1987 19:47:34 +0000 (+0000) Subject: Forgot back-slashes in a C preprocessor macro. X-Git-Tag: 20090517-FFI~13057 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=fba0e935879db523250fc6090c0d963fb100c32e;p=mit-scheme.git Forgot back-slashes in a C preprocessor macro. --- diff --git a/v7/src/microcode/bchdmp.c b/v7/src/microcode/bchdmp.c index 6219af3ca..1b61af140 100644 --- a/v7/src/microcode/bchdmp.c +++ b/v7/src/microcode/bchdmp.c @@ -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); \ } Boolean