summaryrefslogtreecommitdiff
path: root/MLKInterpretedClosure.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-08-24 20:37:50 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-08-24 20:37:50 +0200
commit0194a2ea2867c7e04b002f3113eaf870a4313a50 (patch)
tree9789b8e68d107a92411826ea658a1a7e16fd9716 /MLKInterpretedClosure.m
parent881cc951c5b53aa2d120b1545d0f338d5b180372 (diff)
MLKInterpretedClosure: Handle null argument lists correctly.
Diffstat (limited to 'MLKInterpretedClosure.m')
-rw-r--r--MLKInterpretedClosure.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/MLKInterpretedClosure.m b/MLKInterpretedClosure.m
index 8389bdb..98ffc07 100644
--- a/MLKInterpretedClosure.m
+++ b/MLKInterpretedClosure.m
@@ -53,7 +53,7 @@ static MLKSymbol *PROGN;
MLKLexicalEnvironment *new_environment =
[MLKLexicalEnvironment environmentWithParent:_environment
- variables:[NSDictionary dictionaryWithObject:arglist
+ variables:[NSDictionary dictionaryWithObject:nullify(arglist)
forKey:nullify([_form lambdaListName])]
functions:nil];