From 55e6781005577676b0e9c9450d4080be7f0f53fb Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Tue, 23 Apr 1991 11:53:53 +0000
Subject: [PATCH] Reduced INITIAL-WORD-TABLE-SIZE from 10 to 2.  The average
 utilization of this vector was quite low, and there are 1600 of them in the
 core.

---
 hemlock/table.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hemlock/table.lisp b/hemlock/table.lisp
index 41ff70d85..5ee0e9f82 100644
--- a/hemlock/table.lisp
+++ b/hemlock/table.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/table.lisp,v 1.1.1.2 1991/02/08 16:38:24 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/table.lisp,v 1.1.1.3 1991/04/23 11:53:53 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -65,7 +65,7 @@
 
 (defparameter initial-string-table-size 20
   "Initial size of string table array for value nodes.")
-(defparameter initial-word-table-size 10
+(defparameter initial-word-table-size 2
   "Inital size of each word table array for each tree node.")
 
 (defstruct (string-table
-- 
GitLab