From ef7deb1127f66eddf5719f584b9842f8a59dcf70 Mon Sep 17 00:00:00 2001 From: kongo2002 Date: Sun, 18 Dec 2011 17:57:03 +0100 Subject: [PATCH] fix bug in s:Errors() introduced with commit 755eddaa --- plugin/syntastic.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 36079401..4385557d 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -214,7 +214,7 @@ function! s:ErrorsForType(type) endfunction function! s:Errors() - return extend(s:ErrorsForType("E")) + return s:ErrorsForType("E") endfunction function! s:Warnings()