Checker javac: cleanup.

This commit is contained in:
LCD 47 2015-06-25 16:27:58 +03:00
parent ec9da67323
commit c39563d95b
2 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:_SYNTASTIC_START
endif
let g:_SYNTASTIC_VERSION = '3.6.0-103'
let g:_SYNTASTIC_VERSION = '3.6.0-106'
lockvar g:_SYNTASTIC_VERSION
" Sanity checks {{{1

View File

@ -131,12 +131,12 @@ function! SyntaxCheckers_java_javac_GetLocList() dict " {{{1
if g:syntastic_java_javac_custom_classpath_command !=# ''
" Pre-process the classpath command string a little.
let classpath_command = g:syntastic_java_javac_custom_classpath_command
for sub in [['%FILE_PATH%', expand('%:p')],
\ ['%FILE_NAME%', expand('%:t')],
\ ['%FILE_DIR%', expand('%:p:h')]]
for sub in [['\V%FILE_PATH%', expand('%:p')],
\ ['\V%FILE_NAME%', expand('%:t')],
\ ['\V%FILE_DIR%', expand('%:p:h')]]
let classpath_command = substitute(classpath_command, sub[0], sub[1], 'g')
endfor
let lines = system(classpath_command)
let lines = syntastic#util#system(classpath_command)
if syntastic#util#isRunningWindows() || has('win32unix')
let lines = substitute(lines, "\r\n", "\n", 'g')
endif