Changeset 12708
- Timestamp:
- Aug 27, 2009, 9:25:28 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/source/level-1/l1-clos.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/level-1/l1-clos.lisp
r12045 r12708 44 44 (shared-slots)) 45 45 (dolist (s slotds (values (instance-slots) (shared-slots))) 46 ( if (eq (%slot-definition-allocation s) :class)47 ( shared-slots s)48 ( instance-slots s)))))46 (case (%slot-definition-allocation s) 47 (:instance (instance-slots s)) 48 (:class (shared-slots s)))))) 49 49 50 50
Note:
See TracChangeset
for help on using the changeset viewer.
