summaryrefslogtreecommitdiffstats
path: root/indent/llvm.vim
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--indent/llvm.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/indent/llvm.vim b/indent/llvm.vim
index 90829c25..94c89a04 100644
--- a/indent/llvm.vim
+++ b/indent/llvm.vim
@@ -1,7 +1,4 @@
-if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'llvm') != -1
- finish
-endif
-
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'llvm') == -1
" Vim indent file
" Language: llvm
" Maintainer: The LLVM team, http://llvm.org/
@@ -74,3 +71,4 @@ function! GetLLVMIndent()
return ind
endfunction
+endif