diff options
author | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-24 20:15:26 +0200 |
---|---|---|
committer | Matthias Andreas Benkard <matthias@benkard.de> | 2008-08-24 20:15:26 +0200 |
commit | 601eca17f57383a70077c50ac7e4079daa30bacf (patch) | |
tree | 3124fb667f4688715831dd5648d51f81e6e428e5 | |
parent | e75b253c050a5a0658dfab72cb0783f1f4a09b81 (diff) |
Interpreter: Disable debugging mode by default.
-rw-r--r-- | MLKInterpreter.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MLKInterpreter.m b/MLKInterpreter.m index de493fb..f4718e8 100644 --- a/MLKInterpreter.m +++ b/MLKInterpreter.m @@ -184,7 +184,7 @@ values = [self reallyInterpretWithEnvironment:env]; //if (trace) NSLog (@"; EVAL: %@", MLKPrintToString(_form)); -#elif 1 +#elif 0 NS_DURING { values = [self reallyInterpretWithEnvironment:env]; |