You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 15, 2023. It is now read-only.
Add fbreak to every Ragel action. Ragel's scanner continues trying to parse tokens even after making a match; the accepting state is always the start state. As a result, it would continue consuming input until it either reached eof or read a combination of characters that could not possibly be a character ref, and then would break out with the error state. When we switched from looking for the presence of output to looking for an accepting state, this triggered the bug on some testcases which had prefixes of other char refs following the char ref.
0 commit comments