summaryrefslogtreecommitdiff
path: root/libobjcl.m
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2007-08-04 02:54:43 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2007-08-04 02:54:43 +0200
commit1f4b75e92f6399ec545140ef3d6afe7644f1e6eb (patch)
tree1b140aeb24a451c6f854bc925e56c425ec47933b /libobjcl.m
parent58f6e932d5824de496c28fe628854ef4025d4191 (diff)
Save Objective C references in global hash tables for reuse.
darcs-hash:782a93dbfe144036611aa358f7a108b0ff1532a9
Diffstat (limited to 'libobjcl.m')
-rw-r--r--libobjcl.m5
1 files changed, 3 insertions, 2 deletions
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] == '@'