summaryrefslogtreecommitdiff
path: root/ale_linters/c/clang.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/c/clang.vim')
-rw-r--r--ale_linters/c/clang.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/c/clang.vim b/ale_linters/c/clang.vim
index ecfa5050..2cecc514 100644
--- a/ale_linters/c/clang.vim
+++ b/ale_linters/c/clang.vim
@@ -10,13 +10,13 @@ if !exists('g:ale_c_clang_options')
endif
function! ale_linters#c#clang#GetCommand(buffer) abort
- let l:paths = ale#handlers#c#FindLocalHeaderPaths(a:buffer)
+ let l:paths = ale#c#FindLocalHeaderPaths(a:buffer)
" -iquote with the directory the file is in makes #include work for
" headers in the same directory.
return 'clang -S -x c -fsyntax-only '
\ . '-iquote ' . ale#Escape(fnamemodify(bufname(a:buffer), ':p:h')) . ' '
- \ . ale#handlers#c#IncludeOptions(l:paths)
+ \ . ale#c#IncludeOptions(l:paths)
\ . ale#Var(a:buffer, 'c_clang_options') . ' -'
endfunction