From: Chris Hanson Date: Wed, 6 Sep 2006 04:54:55 +0000 (+0000) Subject: Fix typo in previous change. X-Git-Tag: 20090517-FFI~946 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=ec4a6717e336aeb4ec7bd63e61ef38e25ecaf9b8;p=mit-scheme.git Fix typo in previous change. --- diff --git a/v7/src/runtime/gc.scm b/v7/src/runtime/gc.scm index e48136acb..7dd67b153 100644 --- a/v7/src/runtime/gc.scm +++ b/v7/src/runtime/gc.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: gc.scm,v 14.21 2006/09/06 04:53:41 cph Exp $ +$Id: gc.scm,v 14.22 2006/09/06 04:54:55 cph Exp $ Copyright 1986,1987,1988,1989,1990,1991 Massachusetts Institute of Technology Copyright 1992,1993,2005,2006 Massachusetts Institute of Technology @@ -86,8 +86,8 @@ USA. (set-cdr! queue (cdr items)) (queued-purification-failure))) (cdr result))))))))) - (or (try-queue pure-space-queue) - (try-queue constant-space-queue) + (or (try-queue pure-space-queue #t) + (try-queue constant-space-queue #f) (gc-flip-internal safety-margin)))) (define (queued-purification-failure)