From: Nikodemus Siivola Date: Fri, 31 Oct 2008 12:46:10 +0000 (+0000) Subject: 1.0.22.3: use EQ instead of EQL to check *GC-EPOCH* X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=928f98f835f79f649935a0233f24ec7e9eb85c29;p=sbcl.git 1.0.22.3: use EQ instead of EQL to check *GC-EPOCH* --- diff --git a/src/code/target-hash-table.lisp b/src/code/target-hash-table.lisp index 9ee1e92..977d768 100644 --- a/src/code/target-hash-table.lisp +++ b/src/code/target-hash-table.lisp @@ -564,7 +564,7 @@ if there is no such entry. Entries can be added using SETF." ;; redo the lookup if the GC epoch counter has changed. ;; -- JES, 2007-09-30 `(if (and (not ,foundp) - (not (eql start-epoch sb!kernel::*gc-epoch*))) + (not (eq start-epoch sb!kernel::*gc-epoch*))) (go start) (return-from %gethash3 (values ,value ,foundp)))) (overflow () diff --git a/version.lisp-expr b/version.lisp-expr index 7992737..df6e204 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.22.2" +"1.0.22.3"