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

Fix negated sense of test on raw-type in %defstruct.

parent 4b63f45d
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.13 1993/02/17 18:18:30 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/defstruct.lisp,v 1.37.1.14 1993/02/17 19:47:28 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -1041,7 +1041,7 @@
(dolist (slot (dd-slots info))
(let ((dsd slot))
(when (and (dsd-accessor slot)
(not (eq (dsd-raw-type slot) 'T)))
(eq (dsd-raw-type slot) 't))
(setf (symbol-function (dsd-accessor slot))
(structure-slot-accessor layout dsd))
......
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