Skip to content
Snippets Groups Projects
Commit 3117b53d authored by gerd's avatar gerd
Browse files

* pcl/std-class.lisp (shared-initialize): Check that reader

	is fboundp, like for the writer.
parent 3279c041
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/std-class.lisp,v 1.47 2003/03/30 00:48:10 gerd Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/std-class.lisp,v 1.48 2003/03/30 21:17:03 gerd Exp $")
(in-package :pcl)
......@@ -630,7 +630,8 @@
,@readers-init ,@writers-init)))
(unless (structure-type-p name) (eval defstruct-form))
(mapc (lambda (dslotd reader-name writer-name)
(let* ((reader (gdefinition reader-name))
(let* ((reader (when (fboundp reader-name)
(gdefinition reader-name)))
(writer (when (fboundp writer-name)
(gdefinition writer-name))))
(setf (slot-value dslotd 'internal-reader-function) reader)
......
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