File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3168,7 +3168,7 @@ dos_expandpath(
31683168 break ; // out of memory
31693169
31703170 if (* wfb .cAlternateFileName == NUL )
3171- p_alt == NULL ;
3171+ p_alt = NULL ;
31723172 else
31733173 p_alt = utf16_to_enc (wfb .cAlternateFileName , NULL );
31743174
@@ -3179,10 +3179,9 @@ dos_expandpath(
31793179 && p [1 ] != NUL && (p [1 ] != '.' || p [2 ] != NUL )))
31803180 && (matchname == NULL
31813181 || (regmatch .regprog != NULL
3182- && (vim_regexec (& regmatch , p , (colnr_T )0 )
3182+ && (vim_regexec (& regmatch , p , (colnr_T )0 )
31833183 || (p_alt != NULL
3184- && vim_regexec (& regmatch , p_alt , (colnr_T )0 )))
3185- ))
3184+ && vim_regexec (& regmatch , p_alt , (colnr_T )0 ))))
31863185 || ((flags & EW_NOTWILD )
31873186 && fnamencmp (path + (s - buf ), p , e - s ) == 0 )))
31883187 {
Original file line number Diff line number Diff line change @@ -738,6 +738,8 @@ static char *(features[]) =
738738
739739static int included_patches [] =
740740{ /* Add new patch number below this line */
741+ /**/
742+ 525 ,
741743/**/
742744 524 ,
743745/**/
You can’t perform that action at this time.
0 commit comments