summaryrefslogtreecommitdiff
path: root/MLKReader.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-16 11:51:55 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-16 11:51:55 +0200
commit382f1be127ada9e777cae9c230254040b508f607 (patch)
tree6f7024c413657cda21c3630d29422add2afaeb44 /MLKReader.m
parente60a004c48a14d0b5bb109fe7be5552643289925 (diff)
Add protocol MLKFuncallable.
Diffstat (limited to 'MLKReader.m')
-rw-r--r--MLKReader.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/MLKReader.m b/MLKReader.m
index eb9a9fc..18d6571 100644
--- a/MLKReader.m
+++ b/MLKReader.m
@@ -24,7 +24,7 @@
#import "MLKDynamicContext.h"
#import "MLKEnvironment.h"
#import "MLKPackage.h"
-#import "MLKClosure.h"
+#import "MLKFuncallable.h"
#import "MLKStream.h"
#import "MLKFloat.h"
#import "MLKInteger.h"
@@ -68,7 +68,7 @@
if ([readtable isMacroCharacter:ch])
{
NSArray *returnValues;
- MLKClosure *macrofun = [readtable macroFunctionForCharacter:ch];
+ MLKFuncallable *macrofun = [readtable macroFunctionForCharacter:ch];
NSArray *args = [NSArray arrayWithObjects:
stream,
[MLKCharacter characterWithUnichar:ch],