diff options
Diffstat (limited to 'src/nvim/path.c')
-rw-r--r-- | src/nvim/path.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c index d689eaf8cb..23b22b67f1 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -581,9 +581,9 @@ static size_t do_path_expand(garray_T *gap, const char_u *path, && (vim_strchr((char_u *)"*?[{~$", *path_end) != NULL #ifndef WIN32 || (!p_fic && (flags & EW_ICASE) - && isalpha(PTR2CHAR(path_end)))) + && isalpha(PTR2CHAR(path_end))) #endif - ) { + )) { e = p; } if (has_mbyte) { |