forked from aniani/vim
patch 9.1.0297: Patch 9.1.0296 causes too many issues
Problem: Patch 9.1.0296 causes too many issues
(Tony Mechelynck, @chdiza, CI)
Solution: Back out the change for now
Revert "patch 9.1.0296: regexp: engines do not handle case-folding well"
This reverts commit 7a27c108e0 it causes
issues with syntax highlighting and breaks the FreeBSD and MacOS CI. It
needs more work.
fixes: #14487
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@@ -3816,14 +3816,6 @@ regmatch(
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (enc_utf8)
|
||||
{
|
||||
if (cstrncmp(opnd, rex.input, &len) != 0)
|
||||
{
|
||||
status = RA_NOMATCH;
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
for (i = 0; i < len; ++i)
|
||||
if (opnd[i] != rex.input[i])
|
||||
|
||||
Reference in New Issue
Block a user