aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/health/provider.vim
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro@gmail.com>2016-12-13 14:48:42 +0100
committerGitHub <noreply@github.com>2016-12-13 14:48:42 +0100
commit5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec (patch)
treede8c529a55d9787a0f7a98a5a20a6d217a87cc24 /runtime/autoload/health/provider.vim
parentdbe41fe310fd558f402364a8425373318aad827e (diff)
downloadrneovim-5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec.tar.gz
rneovim-5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec.tar.bz2
rneovim-5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec.zip
Make VimL code compatible with merged Partial support (#5765)
Closes #5763.
Diffstat (limited to 'runtime/autoload/health/provider.vim')
-rw-r--r--runtime/autoload/health/provider.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/health/provider.vim b/runtime/autoload/health/provider.vim
index dce0abd671..cb32dab376 100644
--- a/runtime/autoload/health/provider.vim
+++ b/runtime/autoload/health/provider.vim
@@ -25,7 +25,7 @@ function! s:version_cmp(a, b) abort
endfunction
" Handler for s:system() function.
-function! s:system_handler(jobid, data, event) abort
+function! s:system_handler(jobid, data, event) dict abort
if a:event == 'stdout' || a:event == 'stderr'
let self.output .= join(a:data, '')
elseif a:event == 'exit'