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

Fix makeprg construction. #222

Merged
merged 2 commits into from
Apr 20, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion syntax_checkers/c.vim
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function! SyntaxCheckers_c_GetLocList()
endif endif


" add optional config file parameters " add optional config file parameters
let makeprg .= syntastic#c#ReadConfig(g:syntastic_c_config_file) let makeprg .= ' '.syntastic#c#ReadConfig(g:syntastic_c_config_file)


" process makeprg " process makeprg
let errors = SyntasticMake({ 'makeprg': makeprg, let errors = SyntasticMake({ 'makeprg': makeprg,
Expand Down
2 changes: 1 addition & 1 deletion syntax_checkers/cpp.vim
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function! SyntaxCheckers_cpp_GetLocList()
endif endif


" add optional config file parameters " add optional config file parameters
let makeprg .= syntastic#c#ReadConfig(g:syntastic_cpp_config_file) let makeprg .= ' ' . syntastic#c#ReadConfig(g:syntastic_cpp_config_file)


" process makeprg " process makeprg
let errors = SyntasticMake({ 'makeprg': makeprg, let errors = SyntasticMake({ 'makeprg': makeprg,
Expand Down