summaryrefslogtreecommitdiff
path: root/MLKRoot.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-09-11 18:10:41 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-09-11 18:10:41 +0200
commitace29d495df89afd2e3251064de91b00da2612da (patch)
treec84b9849ac8f6a78bc3b8149533e7edbf12f3a82 /MLKRoot.m
parent07aea7334f5e82002bcbd86edb5cd811be57d441 (diff)
Add various disabled debugging messages.
Diffstat (limited to 'MLKRoot.m')
-rw-r--r--MLKRoot.m4
1 files changed, 4 insertions, 0 deletions
diff --git a/MLKRoot.m b/MLKRoot.m
index 906fe9e..a84a709 100644
--- a/MLKRoot.m
+++ b/MLKRoot.m
@@ -286,6 +286,8 @@ list (id *_data, ...)
while ((arg = va_arg(ap, id)) != MLKEndOfArgumentsMarker)
{
+ //NSLog (@"list: Adding stuff (%%p = %p).", arg);
+ //NSLog (@"list: Stuff: %p = %@", arg, nullify(arg));
if (!tail)
{
cons = tail = [MLKCons cons:arg with:nil];
@@ -299,6 +301,8 @@ list (id *_data, ...)
va_end (ap);
+ //NSLog (@"list: Done. Result: %p", cons);
+ //NSLog (@"list: %p = %@", cons, cons);
return cons;
}