Skip to content
Snippets Groups Projects
Commit 5d4b15a3 authored by dtc's avatar dtc
Browse files

Send the warning about weak-p hash table to *debug-io* not *standard-output*;

from Eric Marsden.
parent cabdd310
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.15 2000/07/06 18:36:36 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash-new.lisp,v 1.16 2000/11/04 17:10:17 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -230,7 +230,7 @@ ...@@ -230,7 +230,7 @@
(length (if (<= scaled-size 37) 37 (almost-primify scaled-size)))) (length (if (<= scaled-size 37) 37 (almost-primify scaled-size))))
(declare (type index size+1 scaled-size length)) (declare (type index size+1 scaled-size length))
(when weak-p (when weak-p
(format t "* Creating unsupported weak-p hash table~%")) (format *debug-io* "* Creating unsupported weak-p hash table~%"))
(let* ((index-vector (let* ((index-vector
(make-array length :element-type '(unsigned-byte 32) (make-array length :element-type '(unsigned-byte 32)
:initial-element 0)) :initial-element 0))
......
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