Changeset 231


Ignore:
Timestamp:
Jan 5, 2004, 9:21:57 PM (21 years ago)
Author:
Gary Byers
Message:

Print class addresses when generating slots, in the commented-out FORMAT
calls.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/examples/objc-clos.lisp

    r185 r231  
    169169
    170170(defun initialize-objc-class-slots (class class-name wrapper &optional foreign)
    171 ;  (format t "~&initialize-objc-class-slots ~s" class-name)
    172 ; (force-output)
     171;  (format t "~&initialize-objc-class-slots ~s (#x~x)" class-name (%ptr-to-int class)) 
     172 ; (force-output)
    173173  (let* ((super (pref class :objc_class.super_class))
    174174         (super-id (unless (%null-ptr-p super) (objc-class-id super)))
     
    199199
    200200(defun initialize-objc-metaclass-slots (class class-name wrapper &optional foreign peer)
    201 ;  (format t "~&initialize-objc-metaclass-slots ~s" class-name)
     201;  (format t "~&initialize-objc-metaclass-slots ~s (#x~x)" class-name (%ptr-to-int class))
    202202;  (force-output)
    203203  (let* ((super (pref class :objc_class.super_class))
Note: See TracChangeset for help on using the changeset viewer.