From 928f98f835f79f649935a0233f24ec7e9eb85c29 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Fri, 31 Oct 2008 12:46:10 +0000 Subject: [PATCH] 1.0.22.3: use EQ instead of EQL to check *GC-EPOCH* --- src/code/target-hash-table.lisp | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/code/target-hash-table.lisp b/src/code/target-hash-table.lisp index 9ee1e9206..977d76833 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 799273714..df6e2041e 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" -- 2.11.4.GIT