Fix parser
This commit is contained in:
parent
db7110dac8
commit
aa33250d42
@ -63,7 +63,7 @@ public abstract class FaweParser<T> extends InputParser<T> {
|
|||||||
last = i + 1;
|
last = i + 1;
|
||||||
continue outer;
|
continue outer;
|
||||||
default:
|
default:
|
||||||
if (StringMan.getMatchingBracket(c) != c) {
|
if (c == '[') {
|
||||||
int next = StringMan.findMatchingBracket(toParse, i);
|
int next = StringMan.findMatchingBracket(toParse, i);
|
||||||
if (next != -1) {
|
if (next != -1) {
|
||||||
i = next;
|
i = next;
|
||||||
|
Loading…
Reference in New Issue
Block a user