diff options
author | ZviRackover <zvirack@gmail.com> | 2018-08-15 22:46:48 +0300 |
---|---|---|
committer | ZviRackover <zvirack@gmail.com> | 2018-08-16 06:03:49 +0300 |
commit | 30392b635689a5f25421c17ead79e521863c8b57 (patch) | |
tree | dcfc160cd10b09de6a7ededd4d241196b24ac122 /src/nvim/path.c | |
parent | 2bddc4ca54e31a14b7e9799beda134217ae867e7 (diff) | |
download | rneovim-30392b635689a5f25421c17ead79e521863c8b57.tar.gz rneovim-30392b635689a5f25421c17ead79e521863c8b57.tar.bz2 rneovim-30392b635689a5f25421c17ead79e521863c8b57.zip |
Remove has_mbyte from lines near changes in parent commit
Diffstat (limited to 'src/nvim/path.c')
-rw-r--r-- | src/nvim/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c index 08b904534b..eeb374cf44 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -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 || utf_head_off((char_u *)b, (char_u *)p - 1) == 0); + && utf_head_off((char_u *)b, (char_u *)p - 1) == 0; } /* |