From 302e5d58c6330b16058f18e2543d1d8bf060a33d Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Sat, 13 Mar 1993 13:07:57 +0000
Subject: [PATCH] Fixed BOA constructors to ignore package when determining if
 a slot appears as an arg.

---
 code/defstruct.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/defstruct.lisp b/code/defstruct.lisp
index a1a016508..c3e028abe 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.40 1993/03/13 12:17:38 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.41 1993/03/13 13:07:57 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -826,7 +826,7 @@
       (funcall creator defstruct (first boa)
 	       (arglist) (vars) (types)
 	       (mapcar #'(lambda (slot)
-			   (or (find (dsd-name slot) (vars))
+			   (or (find (dsd-name slot) (vars) :test #'string=)
 			       (dsd-default slot)))
 		       (dd-slots defstruct))))))
 
-- 
GitLab