summaryrefslogtreecommitdiff
path: root/MLKRoot.m
diff options
context:
space:
mode:
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 7eb9f14..f85ef16 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;
}