From 403591f732a8ae786089216fc324af57656fab13 Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Thu, 2 Jul 1998 10:44:31 +0000
Subject: [PATCH] Fix a bug in remhash which was often incorrectly returning
 False even when an entry was found in which case it should return True. Bug
 spotted by Bill Newman.

---
 code/hash-new.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/code/hash-new.lisp b/code/hash-new.lisp
index 1dbeeb28f..1b4a1fe7d 100644
--- a/code/hash-new.lisp
+++ b/code/hash-new.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash-new.lisp,v 1.2 1998/03/21 08:11:57 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash-new.lisp,v 1.3 1998/07/02 10:44:31 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -659,7 +659,7 @@
 		  (when hash-vector
 		    (setf (aref hash-vector next) #x80000000))
 		  (decf (hash-table-number-entries hash-table))
-		  t)))
+		  (return t))))
 	     (t
 	      ;; Not EQ based
 	      (do ((prior next next)
@@ -680,7 +680,7 @@
 		  (when hash-vector
 		    (setf (aref hash-vector next) #x80000000))
 		  (decf (hash-table-number-entries hash-table))
-		  t))))))))
+		  (return t)))))))))
 
 ;;; CLRHASH -- public.
 ;;; 
-- 
GitLab