Off by one error, sorry. :(

This commit is contained in:
LCD 47 2013-02-06 15:48:58 +02:00
parent b53072bee0
commit f5dc5b1ad4

View File

@ -19,7 +19,7 @@ function! SyntaxCheckers_python_pylint_GetLocList()
let n = len(loclist) - 1 let n = len(loclist) - 1
while n >= 0 while n >= 0
let loclist[n]['type'] = match(['R', 'C', 'W'], loclist[n]['text'][2]) > 0 ? 'W' : 'E' let loclist[n]['type'] = match(['R', 'C', 'W'], loclist[n]['text'][2]) >= 0 ? 'W' : 'E'
let n -= 1 let n -= 1
endwhile endwhile