The last expl3 update broke my "continue" detection for the index. Here is a MWE: (EDIT: I realized it is possible to reduce it even further)
\documentclass{minimal}
\usepackage{expl3,xparse}
\ExplSyntaxOn
\cs_generate_variant:Nn \tl_if_eq:nnTF { xxTF }
\def\ifevenmarkcontd#1{
\tl_if_eq:xxTF { me } { you }
{
}
{
}
}
\ExplSyntaxOff
\begin{document}
\ifevenmarkcontd{anything}
\end{document}
When running it the error message is:
! Undefined control sequence.
<argument> \::T
\::F
l.19
?
If I use \tl_if_eq:nnTF then it compiles. But I need to expand the arguments, and it did work before the last update. How can I fix this now? What is the reason?