From e13404dab4ca84b3060a12f95ec83ec6483faba1 Mon Sep 17 00:00:00 2001
From: "Henry M. Wu" <edu/mit/csail/zurich/mhwu>
Date: Tue, 3 May 1988 00:35:08 +0000
Subject: [PATCH] Added information on FIXNUM size.

---
 v7/src/compiler/machines/bobcat/machin.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/v7/src/compiler/machines/bobcat/machin.scm b/v7/src/compiler/machines/bobcat/machin.scm
index 7330ffb8a..1d16e1151 100644
--- a/v7/src/compiler/machines/bobcat/machin.scm
+++ b/v7/src/compiler/machines/bobcat/machin.scm
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/machines/bobcat/machin.scm,v 4.5 1988/05/02 23:53:41 mhwu Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/machines/bobcat/machin.scm,v 4.6 1988/05/03 00:35:08 mhwu Exp $
 
 Copyright (c) 1987 Massachusetts Institute of Technology
 
@@ -38,10 +38,10 @@ MIT in each case. |#
 ;;; Size of words.  Some of the stuff in "assmd.scm" might want to
 ;;; come here.
 
-(define-integrable scheme-datum-size 24)
-(define-integrable scheme-type-size 8)
+(define-integrable scheme-datum-width 24)
+(define-integrable scheme-type-width 8)
 (define maximum-positive-fixnum
-  (-1+ (expt 2 (-1+ scheme-datum-size))))
+  (-1+ (expt 2 (-1+ scheme-datum-width))))
 
 (define-integrable (stack->memory-offset offset)
   offset)
-- 
2.25.1