Changeset 13928
- Timestamp:
- 05/05/12 14:05:28 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/print-object.lisp
r13814 r13928 53 53 (format stream "~S ~S" 54 54 (class-name (class-of class)) 55 (class-name class))) 55 ;; Handle partially-initialized class metaobjects 56 ;; gracefully; useful for error reporting. 57 (cond ((not (slot-exists-p class 'name)) 58 "(a class object without name slot)") 59 ((not (slot-boundp class 'name)) 60 "(a class object with unset name)") 61 (t (class-name class))))) 56 62 class) 57 63
Note: See TracChangeset
for help on using the changeset viewer.