Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Makes sparse aware of &tabstop.
Browse files Browse the repository at this point in the history
  • Loading branch information
lcd047 committed Apr 3, 2013
1 parent 3b8f38d commit 54cad36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syntax_checkers/c/sparse.vim
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ endif
function! SyntaxCheckers_c_sparse_GetLocList()
let makeprg = syntastic#makeprg#build({
\ 'exe': 'sparse',
\ 'args': syntastic#c#ReadConfig(g:syntastic_sparse_config_file),
\ 'args': '-ftabstop=' . &ts . ' ' . syntastic#c#ReadConfig(g:syntastic_sparse_config_file),
\ 'subchecker': 'sparse' })

let errorformat = '%f:%l:%v: %trror: %m,%f:%l:%v: %tarning: %m,'
Expand Down

0 comments on commit 54cad36

Please sign in to comment.