From 44e2e07d58135d1c54c00f6661fd2db60d58222d Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Thu, 13 Jul 2006 16:38:51 +0000 Subject: [PATCH] Print the identity when printing out weak pointers. --- code/print.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/print.lisp b/code/print.lisp index 9c5739f3c..e0bfd8b6d 100644 --- a/code/print.lisp +++ b/code/print.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/print.lisp,v 1.111 2006/06/30 18:41:22 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.112 2006/07/13 16:38:51 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -2032,7 +2032,7 @@ radix-R. If you have a power-list then pass it in as PL." (defun output-weak-pointer (weak-pointer stream) (declare (type weak-pointer weak-pointer)) - (print-unreadable-object (weak-pointer stream) + (print-unreadable-object (weak-pointer stream :identity t) (multiple-value-bind (value validp) (weak-pointer-value weak-pointer) -- GitLab