Skip to content
Snippets Groups Projects
Commit e8385fd7 authored by rtoy's avatar rtoy
Browse files

code/hash-new.lisp:

o Don't convert characters to uppercase when computing SXHASH for
  characters.  The characters aren't EQUAL anyway, so the hash value
  doesn't have to be the same.

general-info/release-20a.txt:
o Update
parent f0c421a2
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash-new.lisp,v 1.47 2008/04/29 13:07:47 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash-new.lisp,v 1.48 2009/03/27 16:03:15 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -980,7 +980,7 @@ ...@@ -980,7 +980,7 @@
;; The pointers and immediate types. ;; The pointers and immediate types.
(cons (sxhash-list s-expr depth)) (cons (sxhash-list s-expr depth))
(fixnum (ldb sxhash-bits-byte s-expr)) (fixnum (ldb sxhash-bits-byte s-expr))
(character (char-code (char-upcase s-expr))) (character (char-code s-expr))
(pathname (pathname
;; Pathnames are EQUAL if all the components are EQUAL, so we ;; Pathnames are EQUAL if all the components are EQUAL, so we
;; hash all of the components of a pathname together. ;; hash all of the components of a pathname together.
......
...@@ -28,6 +28,10 @@ New in this release: ...@@ -28,6 +28,10 @@ New in this release:
trying to simplify the union of a large number of disjoint trying to simplify the union of a large number of disjoint
numeric types. Previously, we handled the case of integer numeric types. Previously, we handled the case of integer
types. Extend this to handle floats as well. types. Extend this to handle floats as well.
- SXHASH was computing the same hash code for upper and lower case
characters by upcasing the character. This isn't necessary
since the characters are not EQUAL, so make SXHASH return
different values for upper and lower case letter.
* Trac Tickets: * Trac Tickets:
#31: pathname bug with :case :common #31: pathname bug with :case :common
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment