From: Chris Hanson Date: Thu, 10 Dec 1992 01:34:17 +0000 (+0000) Subject: Change record support to understand that a record is applicable only X-Git-Tag: 20090517-FFI~8659 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=2af11f7ba5ddc3fe8cf088bf6650e77c04bb7ade;p=mit-scheme.git Change record support to understand that a record is applicable only when its type is a record whose length field has been specially marked. --- diff --git a/v7/src/runtime/uproc.scm b/v7/src/runtime/uproc.scm index 602fa9403..41372b210 100644 --- a/v7/src/runtime/uproc.scm +++ b/v7/src/runtime/uproc.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: uproc.scm,v 1.5 1992/12/10 01:25:52 cph Exp $ +$Id: uproc.scm,v 1.6 1992/12/10 01:34:17 cph Exp $ Copyright (c) 1990-92 Massachusetts Institute of Technology @@ -84,7 +84,7 @@ MIT in each case. |# (apply-hook-procedure object) (entity-procedure object)))) ((%record? object) - (let ((method (%record-application-method record))) + (let ((method (%record-application-method object))) (if method (skip-entities method) object)))