Merge branch 'master' into gcc_refactor

This commit is contained in:
LCD 47 2013-06-08 09:47:17 +03:00
commit aa73921d30
2 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ function! g:SyntasticLoclist.show()
for buf in tabpagebuflist()
if buflisted(buf) && bufloaded(buf) && getbufvar(buf, '&buftype') ==# 'quickfix'
let win = bufwinnr(buf)
let title = getwinvar(win, 'quickfix_title', '')
let title = getwinvar(win, 'quickfix_title')
if title ==# ':setloclist()' || strpart(title, 0, 16) ==# ':SyntasticCheck '
call setwinvar(win, 'quickfix_title', ':SyntasticCheck ' . self._name)
endif

View File

@ -20,7 +20,7 @@ endfunction
function! SyntaxCheckers_sh_checkbashisms_GetLocList()
let makeprg = syntastic#makeprg#build({
\ 'exe': 'checkbashisms',
\ 'args': '-fpx',
\ 'args': '-fx',
\ 'filetype': 'sh',
\ 'subchecker': 'checkbashisms'})