From: Chris Hanson Date: Thu, 2 Jul 1987 20:45:16 +0000 (+0000) Subject: Add slot to variable objects to allow attachment of declarations. X-Git-Tag: 20090517-FFI~13301 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=2fae96ff60108cffc71e8dca3a8aa5967a19f5bb;p=mit-scheme.git Add slot to variable objects to allow attachment of declarations. --- diff --git a/v7/src/compiler/base/lvalue.scm b/v7/src/compiler/base/lvalue.scm index 572e8e12d..805e36f3b 100644 --- a/v7/src/compiler/base/lvalue.scm +++ b/v7/src/compiler/base/lvalue.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/base/lvalue.scm,v 1.1 1987/06/17 02:16:09 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/base/lvalue.scm,v 1.2 1987/07/02 20:45:16 cph Exp $ Copyright (c) 1987 Massachusetts Institute of Technology @@ -36,10 +36,11 @@ MIT in each case. |# (declare (usual-integrations)) -(define-vnode variable block name assigned? in-cell? normal-offset) +(define-vnode variable block name assigned? in-cell? normal-offset + declarations) (define (make-variable block name) - (make-vnode variable-tag block name false false false)) + (make-vnode variable-tag block name false false false '())) (define variable-assoc (association-procedure eq? variable-name))