summaryrefslogtreecommitdiff
path: root/MLKReadtable.h
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 /MLKReadtable.h
parente60a004c48a14d0b5bb109fe7be5552643289925 (diff)
Add protocol MLKFuncallable.
Diffstat (limited to 'MLKReadtable.h')
-rw-r--r--MLKReadtable.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/MLKReadtable.h b/MLKReadtable.h
index c8421cb..fcdc479 100644
--- a/MLKReadtable.h
+++ b/MLKReadtable.h
@@ -21,7 +21,7 @@
#import <Foundation/NSObject.h>
#import <Foundation/NSString.h>
-@class MLKClosure, NSMutableDictionary;
+@class MLKFuncallable, NSMutableDictionary;
enum MLKReadtableCase
@@ -37,7 +37,7 @@ enum MLKReadtableCase
{
NSMutableDictionary *_syntaxTable;
NSMutableDictionary *_readerMacros;
- //MLKClosure *_caseConverter;
+ //MLKFuncallable *_caseConverter;
enum MLKReadtableCase _case;
}
@@ -73,6 +73,6 @@ enum MLKReadtableCase
-(BOOL) isDigit:(unichar)ch;
-(int) digitWeight:(unichar)ch;
--(MLKClosure *) macroFunctionForCharacter:(unichar)ch;
+-(MLKFuncallable *) macroFunctionForCharacter:(unichar)ch;
-(unichar) charWithReadtableCase:(unichar)ch;
@end