From 5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 13 Dec 2016 14:48:42 +0100 Subject: Make VimL code compatible with merged Partial support (#5765) Closes #5763. --- runtime/autoload/health/provider.vim | 2 +- runtime/autoload/vimexpect.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime') 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' diff --git a/runtime/autoload/vimexpect.vim b/runtime/autoload/vimexpect.vim index 16e7d30d6c..0ed888d2a4 100644 --- a/runtime/autoload/vimexpect.vim +++ b/runtime/autoload/vimexpect.vim @@ -140,7 +140,7 @@ endfunction " Job handler that simply forwards lines to the parser. -function! s:JobOutput(id, lines) +function! s:JobOutput(_id, lines, _event) dict call self._parser.feed(a:lines) endfunction -- cgit