From: Chris Hanson Date: Fri, 15 Sep 2006 01:20:04 +0000 (+0000) Subject: Fix broken reference: TYPE-CODE->GC-TYPE should be TYPE->GC-TYPE. X-Git-Tag: 20090517-FFI~939 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=730dcec1861021211310fc9e9682926fba550dd1;p=mit-scheme.git Fix broken reference: TYPE-CODE->GC-TYPE should be TYPE->GC-TYPE. --- diff --git a/v7/src/runtime/global.scm b/v7/src/runtime/global.scm index 368a24114..12d1dcefb 100644 --- a/v7/src/runtime/global.scm +++ b/v7/src/runtime/global.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: global.scm,v 14.73 2006/09/08 14:39:12 cph Exp $ +$Id: global.scm,v 14.74 2006/09/15 01:20:04 cph Exp $ Copyright 1988,1989,1991,1992,1993,1995 Massachusetts Institute of Technology Copyright 1998,2000,2001,2003,2004,2006 Massachusetts Institute of Technology @@ -265,7 +265,7 @@ USA. (%encode-gc-type ((ucode-primitive object-gc-type 1) object))) (define (type-code->gc-type code) - (%encode-gc-type ((ucode-primitive type-code->gc-type 1) code))) + (%encode-gc-type ((ucode-primitive type->gc-type 1) code))) (define (%encode-gc-type t) (if (not (and (fix:fixnum? t)