Small fix for #112

Ref #111
This commit is contained in:
EinfachToll 2015-02-09 09:20:30 +01:00
parent bf1eb62c32
commit b240b52a3f

View File

@ -11,7 +11,7 @@ endfunction "}}}
" Define path-compare function, either case-sensitive or not, depending on OS. " Define path-compare function, either case-sensitive or not, depending on OS.
"{{{ " function! vimwiki#path#is_equal(p1, p2) "{{{ " function! vimwiki#path#is_equal(p1, p2)
if has('win32') if vimwiki#u#is_windows()
function! vimwiki#path#is_equal(p1, p2) function! vimwiki#path#is_equal(p1, p2)
return a:p1 ==? a:p2 return a:p1 ==? a:p2
endfunction endfunction