mirror of
https://github.com/neovim/neovim.git
synced 2025-10-09 19:36:40 +00:00
Remove occurences of mb_head_off
This commit is contained in:
@@ -1819,7 +1819,7 @@ void path_fix_case(char_u *name)
|
||||
int after_pathsep(const char *b, const char *p)
|
||||
{
|
||||
return p > b && vim_ispathsep(p[-1])
|
||||
&& (!has_mbyte || (*mb_head_off)((char_u *)b, (char_u *)p - 1) == 0);
|
||||
&& (!has_mbyte || utf_head_off((char_u *)b, (char_u *)p - 1) == 0);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user