From e20246def1cc30e0cd726d80dcfb111651d8a768 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Fri, 15 May 1992 17:53:48 +0000 Subject: [PATCH] Forgot to decf the entries count in remhash. --- code/hash.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/hash.lisp b/code/hash.lisp index a113c7506..bdf6cd687 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.15 1992/05/07 09:57:15 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash.lisp,v 1.16 1992/05/15 17:53:48 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -342,6 +342,7 @@ (hash-table-bucket-next bucket)) (setf (svref vector index) (hash-table-bucket-next bucket))) + (decf (hash-table-number-entries hash-table)) (return t))))))) ;;; CLRHASH -- public. -- GitLab