From 7521bbacc89ac67e96eb0661ea8cb464c0bb1ee6 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Sat, 14 Mar 1992 12:05:03 +0000
Subject: [PATCH] In PARSE-1-DSD, don't blow away the accessor when we are just
 redefining the same structure.  For shadowing to be a problem, the accessor
 must be of a supertype.  In DSD-NAME, intern the symbol in *PACKAGE* if the
 accessor is NIL. In DEFAULT-STRUCTURE-PRINT, directly use DSD-%NAME, rather
 than messing around creating a symbol.

---
 code/defstruct.lisp | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/code/defstruct.lisp b/code/defstruct.lisp
index 03a9063d4..12287fa16 100644
--- a/code/defstruct.lisp
+++ b/code/defstruct.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.31 1992/03/13 17:58:29 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.32 1992/03/14 12:05:03 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -65,7 +65,10 @@
 ;;; as a string to avoid creating lots of worthless symbols at load time.
 ;;;
 (defun dsd-name (dsd)
-  (intern (string (dsd-%name dsd)) (symbol-package (dsd-accessor dsd))))
+  (intern (string (dsd-%name dsd))
+	  (if (dsd-accessor dsd)
+	      (symbol-package (dsd-accessor dsd))
+	      *package*)))
 
 (defun print-defstruct-slot-description (structure stream depth)
   (declare (ignore depth))
@@ -263,8 +266,7 @@
 	       (string= (dsd-name (find aname (dd-slots existing)
 					:key #'dsd-accessor))
 			name)
-	       (member (dd-name existing)
-		       (cons (dd-name defstruct) (dd-includes defstruct))))
+	       (member (dd-name existing) (dd-includes defstruct)))
 	  (setf (dsd-accessor islot) nil)
 	  (setf (dsd-accessor islot) aname)))
     
@@ -688,7 +690,7 @@
 		 (loop
 		   (pprint-pop)
 		   (let ((slot (pop slots)))
-		     (output-object (dsd-name slot) stream)
+		     (princ (dsd-%name slot) stream)
 		     (write-char #\space stream)
 		     (pprint-newline :miser stream)
 		     (output-object (structure-ref structure (dsd-index slot))
@@ -711,7 +713,7 @@
 		    (write-string "...)" stream)))
 	     (declare (type index index))
 	     (write-char #\space stream)
-	     (output-object (dsd-name (car slots)) stream)
+	     (princ (dsd-%name (car slots)) stream)
 	     (write-char #\space stream)
 	     (output-object (structure-ref structure index) stream))))))
 
-- 
GitLab