diff --git a/code/hash-new.lisp b/code/hash-new.lisp index 79ef7584c18d12f967a62f29da710dc2806eb049..1b5012ae6b3f85f4f04e4c7a4f73558c8907f45a 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.13 2000/07/06 04:34:02 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash-new.lisp,v 1.14 2000/07/06 05:41:27 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -313,7 +313,7 @@ (fixnum (+ rehash-size old-size)) (float - (the index (values (round (* rehash-size old-size)))))))) + (the (values index t) (round (* rehash-size old-size))))))) (new-kv-vector (make-array (* 2 new-size) :initial-element :empty)) (new-next-vector (make-array new-size :element-type '(unsigned-byte 32) diff --git a/code/hash.lisp b/code/hash.lisp index 7caae1845d8c4aabe3dc943883c778dbb36eea09..cc6d93e4e668fd6513ee315692ca7b63326f9d1f 100644 --- a/code/hash.lisp +++ b/code/hash.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.lisp,v 1.37 2000/07/06 04:34:03 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash.lisp,v 1.38 2000/07/06 05:41:27 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -350,7 +350,7 @@ (fixnum (+ rehash-size old-length)) (float - (the index (values (round (* rehash-size old-length))))))) + (the (values index t) (round (* rehash-size old-length)))))) old-length)) (new-vector (make-array new-length :initial-element nil)) #-gengc (weak-p (hash-table-weak-p table))) @@ -456,8 +456,7 @@ (weak-pointer-value (hash-table-bucket-key bucket)) (assert valid) (when (eq key bucket-key) - (return (values (hash-table-bucket-value bucket) - t)))))) + (return (values (hash-table-bucket-value bucket) t)))))) (do ((bucket (svref vector index) (hash-table-bucket-next bucket))) ((null bucket) (values default nil)) diff --git a/code/room.lisp b/code/room.lisp index 5dee644c6d47cdfe2e40e6028a4e8709c1d48377..f385d2ea72d1d3bc82ca4f527a63bfe66b44c285 100644 --- a/code/room.lisp +++ b/code/room.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/room.lisp,v 1.28 2000/07/06 04:37:43 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/room.lisp,v 1.29 2000/07/06 05:41:28 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -639,8 +639,8 @@ (return-from print-allocated-objects (values))) (unless count - (let ((this-page (* (the (unsigned-byte 32) - (values (truncate addr pagesize))) + (let ((this-page (* (the (values (unsigned-byte 32) t) + (truncate addr pagesize)) pagesize))) (declare (type (unsigned-byte 32) this-page)) (when (/= this-page last-page) diff --git a/code/serve-event.lisp b/code/serve-event.lisp index 3e2513dfbf7efcaa8dcdd3889eb2e533c67db5a0..ab7d5e1a35e585135eb016071c82a83966ceb29b 100644 --- a/code/serve-event.lisp +++ b/code/serve-event.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/serve-event.lisp,v 1.24 2000/07/06 04:31:17 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/serve-event.lisp,v 1.25 2000/07/06 05:41:28 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -265,7 +265,7 @@ (multiple-value-bind (q r) (truncate (coerce timeout 'single-float)) (declare (type index q) (single-float r)) - (values q (the index (values (truncate (* r 1f6))))))) + (values q (the (values index t) (truncate (* r 1f6)))))) (t (error "Timeout is not a real number or NIL: ~S" timeout))))