source: josm/trunk/patches/javacc.patch@ 14508

Last change on this file since 14508 was 10393, checked in by Don-vip, 8 years ago

update to JavaCC 6.1.9 + patch for TokenMgrError.template

File size: 722 bytes
  • src/main/resources/templates/TokenMgrError.template

     
    103103    return("Lexical error at line " +
    104104          errorLine + ", column " +
    105105          errorColumn + ".  Encountered: " +
    106           (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar1)) + "\"") + " (" + (int)curChar + "), ") +
     106          (EOFSeen ? "<EOF> " : ("\"" + addEscapes(String.valueOf(curChar1)) + "\"") + " (" + curChar + "), ") +
    107107          "after : \"" + addEscapes(errorAfter) + "\"");
    108108  }
    109109
Note: See TracBrowser for help on using the repository browser.