aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 591eca96..e5b38cb6 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -149,8 +149,8 @@ endif
"
" <https://github.com/vim/vim/releases/tag/v7.1.055>
"
-if stridx($MYVIM, '\') >= 0
- \ && (v:version < 701 || v:version == 701 && !has('patch55'))
+if (v:version < 701 || v:version == 701 && !has('patch55'))
+ \ && stridx($MYVIM, '\') >= 0
echoerr 'Illegal backslash in user runtime path on Vim < v7.1.055'
finish
endif