From 2af11f7ba5ddc3fe8cf088bf6650e77c04bb7ade Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 10 Dec 1992 01:34:17 +0000 Subject: [PATCH] Change record support to understand that a record is applicable only when its type is a record whose length field has been specially marked. --- v7/src/runtime/uproc.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))) -- 2.25.1