Changeset 420
- Timestamp:
- Jan 30, 2004, 11:32:35 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-clos-boot.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-clos-boot.lisp
r411 r420 2128 2128 (return)))))))) 2129 2129 2130 (defmethod create-reader-method-function ((class s td-class)2130 (defmethod create-reader-method-function ((class slots-class) 2131 2131 (reader-method-class standard-reader-method) 2132 (dslotd standard-direct-slot-definition))2132 (dslotd direct-slot-definition)) 2133 2133 (gvector :function 2134 2134 (uvref *reader-method-function-proto* 0) … … 2138 2138 (dpb 1 $lfbits-numreq (ash 1 $lfbits-method-bit)))) 2139 2139 2140 (defmethod create-writer-method-function ((class s td-class)2140 (defmethod create-writer-method-function ((class slots-class) 2141 2141 (writer-method-class standard-writer-method) 2142 (dslotd standard-direct-slot-definition))2142 (dslotd direct-slot-definition)) 2143 2143 (gvector :function 2144 2144 (uvref *writer-method-function-proto* 0) … … 2763 2763 ; This is part of the MOP 2764 2764 ;;; Maybe it was, at one point in the distant past ... 2765 (defmethod class-slot-initargs ((class s td-class))2765 (defmethod class-slot-initargs ((class slots-class)) 2766 2766 (apply #'append (mapcar #'(lambda (s) 2767 ( standard-slot-definition.initargs s))2768 (%class .slots class))))2767 (%slot-definition-initargs s)) 2768 (%class-slots class)))) 2769 2769 2770 2770
Note:
See TracChangeset
for help on using the changeset viewer.
