From 1f4b75e92f6399ec545140ef3d6afe7644f1e6eb Mon Sep 17 00:00:00 2001 From: Matthias Benkard Date: Sat, 4 Aug 2007 02:54:43 +0200 Subject: Save Objective C references in global hash tables for reuse. darcs-hash:782a93dbfe144036611aa358f7a108b0ff1532a9 --- libobjcl.m | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libobjcl.m') diff --git a/libobjcl.m b/libobjcl.m index a32ea1f..41d165c 100644 --- a/libobjcl.m +++ b/libobjcl.m @@ -178,7 +178,7 @@ objcl_invoke_instance_method (OBJCL_OBJ_DATA receiver, NS_DURING { - fprintf (stderr, "! ---------> %s <--------\n", receiver->type); + /* fprintf (stderr, "! ---------> %s <--------\n", receiver->type); */ assert (receiver->type[0] == '#' || receiver->type[0] == '@' || receiver->type[0] == 'E'); @@ -225,6 +225,7 @@ objcl_invoke_class_method (OBJCL_OBJ_DATA class, NS_DURING { + /* fprintf (stderr, "? ---------> %s <--------\n", class->type); */ assert (class->type[0] == '#' || class->type[0] == '@' || class->type[0] == 'E'); @@ -278,7 +279,7 @@ objcl_class_name (OBJCL_OBJ_DATA class) { Class cls = NULL; - fprintf (stderr, "---------> %s <--------\n", class->type); + /* fprintf (stderr, "---------> %s <--------\n", class->type); */ fflush (stderr); assert (class->type[0] == '#' || class->type[0] == '@' -- cgit v1.2.3