mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
vim-patch:9.1.0297: Patch 9.1.0296 causes too many issues (#28263)
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 7a27c108e0509f3255ebdcb6558e896c223e4d23 it causes
issues with syntax highlighting and breaks the FreeBSD and MacOS CI. It
needs more work.
fixes: vim/vim#14487
c97f4d61cd
Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@@ -1387,7 +1387,7 @@ bool mb_isalpha(int a)
|
||||
return mb_islower(a) || mb_isupper(a);
|
||||
}
|
||||
|
||||
int utf_strnicmp(const char *s1, const char *s2, size_t n1, size_t n2)
|
||||
static int utf_strnicmp(const char *s1, const char *s2, size_t n1, size_t n2)
|
||||
{
|
||||
int c1, c2;
|
||||
char buffer[6];
|
||||
|
Reference in New Issue
Block a user