aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/mbyte.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-07-31 08:23:02 +0800
committerGitHub <noreply@github.com>2024-07-31 08:23:02 +0800
commit403de7ffc752c811d012020412ce1bbd4c61986f (patch)
tree5d51eac31c18752185175baf14c7c8e0dda25851 /src/nvim/mbyte.c
parent63cd2adf3d27436dbaf6a8eda72608d3009ccd3c (diff)
parente57598fbef1de7c9089a58e3b428b87ba155cd0b (diff)
downloadrneovim-403de7ffc752c811d012020412ce1bbd4c61986f.tar.gz
rneovim-403de7ffc752c811d012020412ce1bbd4c61986f.tar.bz2
rneovim-403de7ffc752c811d012020412ce1bbd4c61986f.zip
Merge pull request #29923 from zeertzjq/vim-9.1.0645
vim-patch:9.0.{0105,1771,1777},9.1.0645
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r--src/nvim/mbyte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c
index a544113a7b..c6cefb8a91 100644
--- a/src/nvim/mbyte.c
+++ b/src/nvim/mbyte.c
@@ -1384,7 +1384,7 @@ bool mb_isalpha(int a)
return mb_islower(a) || mb_isupper(a);
}
-static int utf_strnicmp(const char *s1, const char *s2, size_t n1, size_t n2)
+int utf_strnicmp(const char *s1, const char *s2, size_t n1, size_t n2)
{
int c1, c2;
char buffer[6];