summaryrefslogtreecommitdiff
path: root/MLKReadtable.m
diff options
context:
space:
mode:
Diffstat (limited to 'MLKReadtable.m')
-rw-r--r--MLKReadtable.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/MLKReadtable.m b/MLKReadtable.m
index 01e6b38..95180e5 100644
--- a/MLKReadtable.m
+++ b/MLKReadtable.m
@@ -92,12 +92,12 @@ DEFINE_SYNTAX_PREDICATE(isConstituentCharacter:, CONSTITUENT)
isEqual:[[NSString stringWithFormat:@"%C", ch] lowercaseString]]);
}
--(MLKFuncallable *) macroFunctionForCharacter:(unichar)ch;
+-(id <MLKFuncallable>) macroFunctionForCharacter:(unichar)ch;
{
return [_readerMacros objectForKey:[NSNumber numberWithLong:ch]];
}
--(void) setMacroFunction:(MLKFuncallable *)function forCharacter:(unichar)ch
+-(void) setMacroFunction:(id <MLKFuncallable>)function forCharacter:(unichar)ch
{
[_readerMacros setObject:function
forKey:[NSNumber numberWithLong:ch]];