Skip to content
Snippets Groups Projects
Commit 0304b296 authored by wlott's avatar wlott
Browse files

Fixed define-primitive-object to use T as the slot type if it is unsupplied

instead of using NIL.
parent f4a8e79e
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/compiler/generic/vm-macs.lisp,v 1.10 1992/12/16 18:11:02 wlott Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-macs.lisp,v 1.11 1992/12/16 21:35:52 wlott Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -121,7 +121,7 @@
(destructuring-bind
(slot-name &rest options
&key docs rest-p (length (if rest-p 0 1))
((:type slot-type)) init
((:type slot-type) t) init
(ref-known nil ref-known-p) ref-trans
(set-known nil set-known-p) set-trans
&allow-other-keys)
......
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