summaryrefslogtreecommitdiff
path: root/MLKInterpreter.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-07-27 10:05:56 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-07-27 10:05:56 +0200
commitf91b134dcabcf82f8c35c67b5d43390b8e8d1ae2 (patch)
tree4d624dd4c400d1450854a05f39e0f555f9dd8ee0 /MLKInterpreter.m
parent9093646dcd116415f629b87086d915dc64ced261 (diff)
LOAD: Do not print separate messages for minimal compilation and loading.
Diffstat (limited to 'MLKInterpreter.m')
-rw-r--r--MLKInterpreter.m5
1 files changed, 3 insertions, 2 deletions
diff --git a/MLKInterpreter.m b/MLKInterpreter.m
index 3d55f33..46b8676 100644
--- a/MLKInterpreter.m
+++ b/MLKInterpreter.m
@@ -923,7 +923,8 @@ static MLKSymbol *_LAMBDA;
else
formdesc = [code descriptionForLisp];
- fprintf (stderr, "; COMPILE-MINIMALLY: %s\n", [formdesc UTF8String]);
+ //fprintf (stderr, "; COMPILE-MINIMALLY: %s\n", [formdesc UTF8String]);
+ fprintf (stderr, "; LOAD: %s\n", [formdesc UTF8String]);
expansion = denullify([[MLKInterpreter
eval:code
inLexicalContext:[MLKLexicalContext
@@ -940,7 +941,7 @@ static MLKSymbol *_LAMBDA;
else
formdesc = [expansion descriptionForLisp];
- fprintf (stderr, "; LOAD: %s\n", [formdesc UTF8String]);
+ //fprintf (stderr, "; LOAD: %s\n", [formdesc UTF8String]);
result = [MLKInterpreter
eval:expansion
inLexicalContext:[MLKLexicalContext globalContext]