From 5d4b15a364fee87be302dddad853879112fd564a Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Sat, 4 Nov 2000 17:10:17 +0000 Subject: [PATCH] Send the warning about weak-p hash table to *debug-io* not *standard-output*; from Eric Marsden. --- code/hash-new.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/hash-new.lisp b/code/hash-new.lisp index ef8a6fd03..57b927de0 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.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 @@ (length (if (<= scaled-size 37) 37 (almost-primify scaled-size)))) (declare (type index size+1 scaled-size length)) (when weak-p - (format t "* Creating unsupported weak-p hash table~%")) + (format *debug-io* "* Creating unsupported weak-p hash table~%")) (let* ((index-vector (make-array length :element-type '(unsigned-byte 32) :initial-element 0)) -- GitLab