Changeset 11586
- Timestamp:
- 01/24/09 20:36:52 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/subtypep.lisp
r11585 r11586 94 94 (SIMPLE-CONDITION CONDITION) 95 95 (SIMPLE-ERROR SIMPLE-CONDITION ERROR) 96 (SIMPLE-STRING SIMPLE-BASE-STRINGBASE-STRING STRING SIMPLE-ARRAY)96 (SIMPLE-STRING BASE-STRING STRING SIMPLE-ARRAY) 97 97 (SIMPLE-TYPE-ERROR SIMPLE-CONDITION TYPE-ERROR) 98 98 (SIMPLE-VECTOR VECTOR SIMPLE-ARRAY) … … 484 484 (and (classp type2) (eq (%class-name type2) t))) 485 485 (return-from %subtypep (values t t))) 486 (when (classp type1) 487 (setf type1 (%class-name type1))) 488 (when (classp type2) 489 (setf type2 (%class-name type2))) 486 490 (let ((ct1 (ctype type1)) 487 491 (ct2 (ctype type2)))
Note: See TracChangeset
for help on using the changeset viewer.