diff options
author | Matthias Benkard <mulk@minimulk.mst-plus> | 2008-08-24 14:36:17 +0200 |
---|---|---|
committer | Matthias Benkard <mulk@minimulk.mst-plus> | 2008-08-24 14:36:17 +0200 |
commit | 0b4042d8142aa62f8ef6e6fb9d1b1e5cfe922bca (patch) | |
tree | 4ab860703e350f17b3f276ae9cc889edb146f2cc | |
parent | 0be08d02045b70bdb3eb8ab7f01051f4372a2d04 (diff) |
MLKLexicalEnvironment: Fix value setting.
-rw-r--r-- | MLKLexicalEnvironment.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MLKLexicalEnvironment.m b/MLKLexicalEnvironment.m index 723c955..91ff351 100644 --- a/MLKLexicalEnvironment.m +++ b/MLKLexicalEnvironment.m @@ -125,7 +125,7 @@ static MLKLexicalEnvironment *global_environment; || [_variables environmentForSymbol:symbol] == global_environment->_variables) { id *cell = [[MLKLexicalContext globalContext] bindingCellForSymbol:symbol]; - [*cell setValue:value forSymbol:symbol]; + [*cell setValue:value]; } else { @@ -138,7 +138,7 @@ static MLKLexicalEnvironment *global_environment; if (self == global_environment) { id *cell = [[MLKLexicalContext globalContext] bindingCellForSymbol:symbol]; - [*cell setValue:value forSymbol:symbol]; + [*cell setValue:value]; } else { |