Parser - Fixed named loop finder.

This commit is contained in:
Emmanuel BENOîT 2023-01-02 12:00:46 +01:00
parent 7541a8bda6
commit 06ae3dd973

View file

@ -640,7 +640,7 @@ impl Parser {
LoopParsingState::NamedLoop(n) if n == name => return true,
LoopParsingState::NamedLoop(_) => (),
}
pos += 1;
pos -= 1;
}
false
}