From 66ef3ec267c7730f788968a9affa187760ee10db Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sat, 14 Dec 1991 13:09:37 +0000 Subject: [PATCH] Fixed my change to make-hash-table to use let* instead of let. --- code/hash.lisp | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/code/hash.lisp b/code/hash.lisp index f9acb2a8e..b8d133486 100644 --- a/code/hash.lisp +++ b/code/hash.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash.lisp,v 1.10 1991/12/14 08:57:25 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash.lisp,v 1.11 1991/12/14 13:09:37 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -234,25 +234,25 @@ (declare (type (or function (member eq eql equal)) test) (type index size rehash-size) (type (or (float 0.0 1.0) index) rehash-threshold)) - (let ((test (cond ((or (eq test #'eq) (eq test 'eq)) 'eq) - ((or (eq test #'eql) (eq test 'eql)) 'eql) - ((or (eq test #'equal) (eq test 'equal)) 'equal) - (t - (error "~S is an illegal :Test for hash tables." test)))) - (size (if (<= size 37) 37 (almost-primify size))) - (rehash-threshold - (cond ((and (fixnump rehash-threshold) - (<= 0 rehash-threshold size)) - rehash-threshold) - ((and (floatp rehash-threshold) - (<= 0.0 rehash-threshold 1.0)) - (ceiling (* rehash-threshold size))) - (t - (error "Invalid rehash-threshold: ~S.~%Must be either a float ~ - between 0.0 and 1.0 ~%or an integer between 0 and ~D." - rehash-threshold - size)))) - (table (make-array size :initial-element nil))) + (let* ((test (cond ((or (eq test #'eq) (eq test 'eq)) 'eq) + ((or (eq test #'eql) (eq test 'eql)) 'eql) + ((or (eq test #'equal) (eq test 'equal)) 'equal) + (t + (error "~S is an illegal :Test for hash tables." test)))) + (size (if (<= size 37) 37 (almost-primify size))) + (rehash-threshold + (cond ((and (fixnump rehash-threshold) + (<= 0 rehash-threshold size)) + rehash-threshold) + ((and (floatp rehash-threshold) + (<= 0.0 rehash-threshold 1.0)) + (ceiling (* rehash-threshold size))) + (t + (error "Invalid rehash-threshold: ~S.~%Must be either a float ~ + between 0.0 and 1.0 ~%or an integer between 0 and ~D." + rehash-threshold + size)))) + (table (make-array size :initial-element nil))) (make-hash-table-structure :size size :rehash-size rehash-size :rehash-threshold rehash-threshold -- GitLab