From 0304b296d1284909028a1677ae6137493e5b5c00 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 16 Dec 1992 21:35:52 +0000 Subject: [PATCH] Fixed define-primitive-object to use T as the slot type if it is unsupplied instead of using NIL. --- compiler/generic/vm-macs.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/generic/vm-macs.lisp b/compiler/generic/vm-macs.lisp index bffe54f77..9cef0bc39 100644 --- a/compiler/generic/vm-macs.lisp +++ b/compiler/generic/vm-macs.lisp @@ -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) -- GitLab