Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/objects.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@
"Return a list of slot names (symbols) skipping :class allocation slots if
*store-class-slots* is t."
(assert class)
(unless (class-finalized-p class)
(finalize-inheritance class))
(loop with store-class-slots = *store-class-slots*
with is-structure-object = (or (typep class 'structure-class) ;; allegro work around
(subtypep class 'structure-class))
Expand Down