summaryrefslogtreecommitdiff
path: root/MLKReader.m
diff options
context:
space:
mode:
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 c880a68..f957c4d 100644
--- a/MLKReader.m
+++ b/MLKReader.m
@@ -67,7 +67,7 @@
}
ch = [stream readChar];
- if ([readtable isWhitespaceCharacter:ch])
+ if ([readtable isWhitespaceCharacter:ch] || ch == '\0')
goto start;
if ([readtable isMacroCharacter:ch])
@@ -115,7 +115,7 @@
if ([readtable isConstituentCharacter:ch])
{
- //NSLog (@"--> Constituent");
+ //NSLog (@"--> Constituent (%C)", ch);
token = [NSMutableString stringWithCapacity:8];
[token appendFormat:@"%C", [readtable charWithReadtableCase:ch]];
}