summaryrefslogtreecommitdiffstats
path: root/syntax/opencl.vim
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/opencl.vim')
-rw-r--r--syntax/opencl.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/syntax/opencl.vim b/syntax/opencl.vim
index 2d8b55a0..12842bad 100644
--- a/syntax/opencl.vim
+++ b/syntax/opencl.vim
@@ -1,7 +1,4 @@
-if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'opencl') != -1
- finish
-endif
-
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'opencl') == -1
" Vim syntax file
" Language: OpenCL (Open Computing Language)
" Maintainer: Terence Ou (rivan_@msn.com)
@@ -159,3 +156,4 @@ hi def link clStatement Statement
let b:current_syntax = "opencl"
" vim: ts=8
+endif