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

Print out what kind of weak hash table we have.

parent 333a87d3
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/describe.lisp,v 1.47 2006/07/20 18:30:21 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.48 2006/08/21 15:46:08 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -190,7 +190,8 @@ ...@@ -190,7 +190,8 @@
(hash-table-rehash-threshold x)) (hash-table-rehash-threshold x))
(format t "~&It currently holds ~d entries." (format t "~&It currently holds ~d entries."
(hash-table-number-entries x)) (hash-table-number-entries x))
(format t "~&It is ~:[not a~;a~] weak table." (hash-table-weak-p x))) (when (hash-table-weak-p x)
(format t "~&It is weak ~A table." (hash-table-weak-p x))))
(defun describe-package (x) (defun describe-package (x)
(describe-instance x) (describe-instance x)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment