From aadb93e889710dc469813f69d739078a8b035e2e Mon Sep 17 00:00:00 2001 From: Andrea Cedraro Date: Wed, 16 Oct 2013 12:25:25 +0200 Subject: [PATCH] Fix error on startup caused by malformed expression --- plugin/youcompleteme.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/youcompleteme.vim b/plugin/youcompleteme.vim index 384a098a..24f9f504 100644 --- a/plugin/youcompleteme.vim +++ b/plugin/youcompleteme.vim @@ -43,7 +43,7 @@ function! s:HasYcmCore() elseif filereadable(path_prefix . 'ycm_client_support.pyd') && \ filereadable(path_prefix . 'ycm_core.pyd') return 1 - elseif filereadable(path_prefix . 'ycm_client_support.dll') + elseif filereadable(path_prefix . 'ycm_client_support.dll') && \ filereadable(path_prefix . 'ycm_core.dll') return 1 endif