Changeset 7205 for branches/working-0709/ccl/lib/misc.lisp
- Timestamp:
- Sep 12, 2007, 2:26:36 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0709/ccl/lib/misc.lisp
r5920 r7205 300 300 (documentation c 'type)) 301 301 302 302 303 (defmethod (setf documentation) ((new t) 303 304 (c structure-class) 304 305 (doc-type (eql 't))) 305 306 (setf (documentation c 'type) new)) 307 308 (defmethod documentation ((slot slot-definition) (doc-type (eql 't))) 309 (standard-slot-definition.documentation slot)) 310 311 (defmethod (setf documentation) (new (slot slot-definition) (doc-type (eql 't))) 312 (setf (standard-slot-definition.documentation slot) new)) 313 314 306 315 307 316 ;;; This is now deprecated; things which call it should stop doing so.
Note: See TracChangeset
for help on using the changeset viewer.