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:
Rui Abreu Ferreira 2016-01-09 00:58:52 +00:00 committed by Justin M. Keyes
parent c6e481cba5
commit 57cfb95758

View File

@ -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) {