jsyntaxpane: restoring not working XML

This commit is contained in:
Jindra Petk
2012-12-31 13:59:22 +01:00
parent 9d2114157d
commit 197c633709

View File

@@ -246,12 +246,12 @@ SingleCharacter = [^\r\n\'\\]
/* whitespace */
{WhiteSpace} { }
{XMLBeginTag} { yybegin(XMLSTARTTAG);
/* {XMLBeginTag} { yybegin(XMLSTARTTAG);
tokenStart = yychar;
tokenLength = yylength();
String s=yytext();
xmlTagName = s.substring(1);
}
}*/
/* identifiers */
{Identifier} { return token(TokenType.IDENTIFIER); }
}