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