mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-03-09 06:30:32 -07:00
Fixed typo in ALLOCATE-INSTANCE (for structure-class)
This commit is contained in:
parent
92054ae38c
commit
6f7c8baeb3
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@
|
|||
(defmethod allocate-instance ((class structure-class) &rest initargs)
|
||||
(declare (ignore initargs))
|
||||
(apply #'si::make-structure class
|
||||
(make-list (class-size class)) :initial-element (si::unbound)))
|
||||
(make-list (class-size class) :initial-element (si::unbound))))
|
||||
|
||||
(defmethod finalize-inheritance ((class structure-class))
|
||||
(call-next-method)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue