summaryrefslogtreecommitdiff
path: root/MLKReadtable.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-19 20:15:06 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-19 20:15:06 +0200
commitbc49c6720e20a64dc8708e96df89b616c90e4ddf (patch)
tree843f6bcabd3275fef35dd629fdda8a91ef0bec8f /MLKReadtable.m
parent8337945090fe3fd0e142fda4dd98bb3fca23fbf5 (diff)
Fix the reader's token recognition code.
Diffstat (limited to 'MLKReadtable.m')
-rw-r--r--MLKReadtable.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/MLKReadtable.m b/MLKReadtable.m
index 393c4d1..dd2a428 100644
--- a/MLKReadtable.m
+++ b/MLKReadtable.m
@@ -63,7 +63,7 @@
-(enum MLKSyntaxType) characterSyntaxType:(unichar)ch
{
- NSNumber *type = [_traits objectForKey:[NSNumber numberWithLong:ch]];
+ NSNumber *type = [_syntaxTable objectForKey:[NSNumber numberWithLong:ch]];
if (!type)
return CONSTITUENT;
else