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

Commit

Permalink
Iverilog checker: formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
lcd047 committed Oct 26, 2015
1 parent d51d5ea commit 11ca315
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion plugin/syntastic.vim
Expand Up @@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:_SYNTASTIC_START
endif

let g:_SYNTASTIC_VERSION = '3.7.0-10'
let g:_SYNTASTIC_VERSION = '3.7.0-15'
lockvar g:_SYNTASTIC_VERSION

" Sanity checks {{{1
Expand Down
14 changes: 7 additions & 7 deletions syntax_checkers/verilog/iverilog.vim
Expand Up @@ -15,15 +15,15 @@ set cpo&vim

function! SyntaxCheckers_verilog_iverilog_GetLocList() dict
let makeprg = self.makeprgBuild({
\ 'args_before': '-t null',
\ 'args': '-Wall' })
\ 'args_before': '-t null',
\ 'args': '-Wall' })

let errorformat =
\ '%f:%l: %trror: %m,' .
\ '%f:%l: %tarning: %m,' .
\ '%E%f:%l: : %m,' .
\ '%W%f:%l: : %m,' .
\ '%f:%l: %m'
\ '%f:%l: %trror: %m,' .
\ '%f:%l: %tarning: %m,' .
\ '%E%f:%l: : %m,' .
\ '%W%f:%l: : %m,' .
\ '%f:%l: %m'

return SyntasticMake({'makeprg': makeprg, 'errorformat': errorformat})
endfunction
Expand Down

0 comments on commit 11ca315

Please sign in to comment.