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

Include whether a hash-table is weak or not when describing a

hash-table.
parent 05747b21
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.46 2006/07/07 18:23:48 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.47 2006/07/20 18:30:21 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -189,7 +189,8 @@ ...@@ -189,7 +189,8 @@
(format t "~&Its rehash-threshold is ~S." (format t "~&Its rehash-threshold is ~S."
(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)))
(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.
Finish editing this message first!
Please register or to comment