summaryrefslogtreecommitdiff
path: root/MLKInterpreter.m
diff options
context:
space:
mode:
Diffstat (limited to 'MLKInterpreter.m')
-rw-r--r--MLKInterpreter.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/MLKInterpreter.m b/MLKInterpreter.m
index fdba4be..79b8794 100644
--- a/MLKInterpreter.m
+++ b/MLKInterpreter.m
@@ -151,7 +151,7 @@ static MLKSymbol *_DEFMACRO;
if ([[body car] isKindOfClass:[MLKCons class]]
&& [[body car] car] == DECLARE)
{
- declarations = [body car];
+ declarations = [[body car] cdr];
body = [body cdr];
}
else