Skip to content
Snippets Groups Projects
Commit f3bbffc4 authored by ram's avatar ram
Browse files

Fix typeerror.

parent cf13b97b
No related branches found
No related tags found
No related merge requests found
......@@ -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.37.1.10 1993/02/16 20:51:35 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.37.1.11 1993/02/17 12:27:36 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -456,7 +456,10 @@
(if #-ns-boot
(and (structure-class-p existing)
(not (eq (class-name existing) (dd-name defstruct)))
(string= (dsd-%name (find aname (dd-slots existing)
(string= (dsd-%name (find aname
(dd-slots
(layout-info
(class-layout existing)))
:key #'dsd-accessor))
name))
#+ns-boot nil
......
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