From 6d768c151a3f18514664f671b761ad936664803f Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Thu, 20 Jul 2006 18:30:21 +0000 Subject: [PATCH] Include whether a hash-table is weak or not when describing a hash-table. --- code/describe.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/describe.lisp b/code/describe.lisp index f325613bc..a4fdcf064 100644 --- a/code/describe.lisp +++ b/code/describe.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/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 @@ (format t "~&Its rehash-threshold is ~S." (hash-table-rehash-threshold x)) (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) (describe-instance x) -- GitLab