Changeset 14021
- Timestamp:
- Jul 22, 2010, 10:14:03 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/source/lib/defstruct-lds.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/lib/defstruct-lds.lisp
r13788 r14021 286 286 (intern (%str-cat (string name1) (string name2)))) 287 287 288 ;; By special dispensation, don't complain about unknown types 289 ;; mentioned in defstruct :type slot options. 288 290 (defun wrap-with-type-declaration (value slot &aux (slot-type (ssd-type slot))) 289 291 (if (eq t slot-type) 290 292 value 291 `(the ,slot-type ,value))) 293 (if (specifier-type-if-known slot-type) 294 `(the ,slot-type ,value) 295 value))) 292 296 293 297 (defun make-class-cells-list (class-names)
Note:
See TracChangeset
for help on using the changeset viewer.
