1 2 3 4 5 6 7 8 9 10 11 12 13
|
Index: src/main/resources/templates/TokenMgrError.template
===================================================================
--- src/main/resources/templates/TokenMgrError.template (revision 765)
+++ src/main/resources/templates/TokenMgrError.template (working copy)
@@ -103,7 +103,7 @@
return("Lexical error at line " +
errorLine + ", column " +
errorColumn + ". Encountered: " +
- (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar1)) + "\"") + " (" + (int)curChar + "), ") +
+ (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar1)) + "\"") + " (" + curChar + "), ") +
"after : \"" + addEscapes(errorAfter) + "\"");
}
|