mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
win32: Fix syntax error in #ifndef block. #3968
The block is only compiled if the system is NOT WIN32, but the closing parenthesis for the statement opened outside the block is closed inside the block.
This commit is contained in:
parent
c6e481cba5
commit
57cfb95758
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user