Changeset 457
- Timestamp:
- Feb 1, 2004, 11:41:08 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/ccl/examples/objc-clos.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/examples/objc-clos.lisp
r453 r457 216 216 217 217 (defmethod print-object ((o objc:objc-object) stream) 218 (print-unreadable-object (o stream :type t) 219 (format stream 220 (if (typep o 'ns::ns-string) 221 "~s (#x~x)" 222 "~a (#x~x)") 223 (nsobject-description o) (%ptr-to-int o)))) 218 (if (objc-object-p o) 219 (print-unreadable-object (o stream :type t) 220 (format stream 221 (if (typep o 'ns::ns-string) 222 "~s (#x~x)" 223 "~a (#x~x)") 224 (nsobject-description o) (%ptr-to-int o))) 225 (format stream "#<Bogus ObjC Object #x~X>" (%ptr-to-int o)))) 224 226 225 227
Note:
See TracChangeset
for help on using the changeset viewer.
