summaryrefslogtreecommitdiffstats
path: root/src/vim.h
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-04-10 16:18:15 +0200
committerChristian Brabandt <cb@256bit.org>2024-04-10 16:22:17 +0200
commitc97f4d61cde24030f2f7d2318e1b409a0ccc3e43 (patch)
treef656142296f4b44236674cdb6258d96acab0a6ee /src/vim.h
parent49f1e1979f9c3a4d7b28f0961bca0e41227a0557 (diff)
patch 9.1.0297: Patch 9.1.0296 causes too many issuesv9.1.0297
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: #14487 Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vim.h b/src/vim.h
index 33d592038d..4507674fcd 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -1751,7 +1751,6 @@ void *vim_memset(void *, int, size_t);
# define MB_STRICMP(d, s) mb_strnicmp((char_u *)(d), (char_u *)(s), (int)MAXCOL)
# define MB_STRNICMP(d, s, n) mb_strnicmp((char_u *)(d), (char_u *)(s), (int)(n))
-# define MB_STRNICMP2(d, s, n1, n2) mb_strnicmp2((char_u *)(d), (char_u *)(s), (int)(n1), (int)(n2))
#define STRCAT(d, s) strcat((char *)(d), (char *)(s))
#define STRNCAT(d, s, n) strncat((char *)(d), (char *)(s), (size_t)(n))